mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
20 lines
311 B
Objective-C
20 lines
311 B
Objective-C
int barFunc1(int a);
|
|
|
|
int redeclaredInMultipleModulesFunc1(int a);
|
|
|
|
@interface BarForwardDeclaredClass
|
|
- (void) barInstanceFunc0;
|
|
@end
|
|
|
|
enum BarForwardDeclaredEnum {
|
|
BarForwardDeclaredEnumValue = 42
|
|
};
|
|
|
|
#define BAR_MACRO_1 0
|
|
|
|
typedef struct {
|
|
int count;
|
|
} SomeItemSet;
|
|
|
|
typedef SomeItemSet SomeEnvironment;
|