xref: /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/stand-alone-implementation.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2// radar 7547942
3// Allow injection of ivars into implementation's implicit class.
4
5@implementation INTFSTANDALONE // expected-warning {{cannot find interface declaration for 'INTFSTANDALONE'}}
6{
7  id IVAR1;
8  id IVAR2;
9}
10- (id) Meth { return IVAR1; }
11@end
12
13