12 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s2// Allow injection of ivars into implementation's implicit class.3 4@implementation INTFSTANDALONE // expected-warning {{cannot find interface declaration for 'INTFSTANDALONE'}}5{6 id IVAR1;7 id IVAR2;8}9- (id) Meth { return IVAR1; }10@end11 12