blob: 9aff96377404abc1f154a690e575c87a14f18411 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Andy Gibbsc6e68da2012-10-19 12:44:48 +00002// expected-no-diagnostics
Fariborz Jahanianb31a2f22007-12-05 18:16:33 +00003
4@interface Subclass
5+ (int)magicNumber;
6@end
7
8int main (void) {
Steve Naroff9527bbf2009-03-09 21:12:44 +00009 return Subclass.magicNumber;
Fariborz Jahanianb31a2f22007-12-05 18:16:33 +000010}
11