blob: 3cdf2b05cf85335c35223bb551a0353408401ac3 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:241// RUN: %clang_cc1 -fsyntax-only -verify %s
Fariborz Jahanianb31a2f22007-12-05 18:16:332
3@interface Subclass
4+ (int)magicNumber;
5@end
6
7int main (void) {
Steve Naroff9527bbf2009-03-09 21:12:448 return Subclass.magicNumber;
Fariborz Jahanianb31a2f22007-12-05 18:16:339}
10