12 lines
171 B
Mathematica
12 lines
171 B
Mathematica
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
||
|
// expected-no-diagnostics
|
||
|
|
||
|
@interface Subclass
|
||
|
+ (int)magicNumber;
|
||
|
@end
|
||
|
|
||
|
int main (void) {
|
||
|
return Subclass.magicNumber;
|
||
|
}
|
||
|
|