• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Protocol Buffers - Google's data interchange format
2// Copyright 2008 Google Inc.  All rights reserved.
3//
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file or at
6// https://developers.google.com/open-source/licenses/bsd
7
8// This is a test including a single public header to ensure things build.
9// It helps test that imports are complete/ordered correctly.
10
11#import "GPBBootstrap.h"
12
13GPB_ENUM_FWD_DECLARE(SomeProtoBasedEnum);
14
15// A prototype that uses the fwd decls.
16extern enum SomeProtoBasedEnum SomeFunction(void);
17
18// Something in the body of this file so the compiler/linker won't complain
19// about an empty .o file.
20__attribute__((visibility("default"))) char dummy_symbol_24 = 0;
21