зеркало из https://github.com/microsoft/clang-1.git
19 строки
186 B
Mathematica
19 строки
186 B
Mathematica
|
// RUN: clang %s -fsyntax-only -verify
|
||
|
|
||
|
@interface Test {
|
||
|
int x;
|
||
|
}
|
||
|
|
||
|
-(void) setX: (int) d;
|
||
|
@end
|
||
|
|
||
|
extern struct foo x;
|
||
|
|
||
|
@implementation Test
|
||
|
|
||
|
-(void) setX: (int) n {
|
||
|
x = n;
|
||
|
}
|
||
|
|
||
|
@end
|