1// RUN: %clang -target i386-apple-darwin -fsyntax-only -Xclang -verify %s 2// RUN: %clang -target i386-apple-darwin -x objective-c++ -fsyntax-only -Xclang -verify %s 3 4@interface NSObject 5@end 6 7__attribute__((objc_class_stub)) // expected-warning {{'objc_class_stub' attribute ignored}} 8__attribute__((objc_subclassing_restricted)) 9@interface StubClass : NSObject 10@end 11