blob: c33b66a37bc3abba9b8f7a28b847d259d607a7ac [file] [log] [blame]
Fariborz Jahanian3a21cd92010-02-17 17:00:07 +00001// RUN: %clang_cc1 -fsyntax-only -verify %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