mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
32 lines
447 B
Objective-C
32 lines
447 B
Objective-C
#import <Foundation.h>
|
|
@import Dispatch;
|
|
#include "other-header.h"
|
|
|
|
#define MACRO_GOT_UNDEFINED 1
|
|
#undef MACRO_GOT_UNDEFINED
|
|
#define MY_MACRO 1
|
|
|
|
void doSomethingInHead(int arg);
|
|
|
|
@interface BaseInHead
|
|
- (void)doIt:(int)arg;
|
|
@end
|
|
|
|
/// Awesome name.
|
|
@interface SameName
|
|
@end
|
|
@protocol SameName
|
|
@end
|
|
|
|
@interface BaseInHead(SomeCategory)
|
|
-(void)doItInCategory;
|
|
@end
|
|
|
|
@protocol Superproto
|
|
-(void)lala;
|
|
@end
|
|
|
|
@class Cake;
|
|
struct Arkham;
|
|
@protocol Soul;
|