1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s 2*f4a2713aSLionel Sambuc// radar 7547942 3*f4a2713aSLionel Sambuc// Allow injection of ivars into implementation's implicit class. 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc@implementation INTFSTANDALONE // expected-warning {{cannot find interface declaration for 'INTFSTANDALONE'}} 6*f4a2713aSLionel Sambuc{ 7*f4a2713aSLionel Sambuc id IVAR1; 8*f4a2713aSLionel Sambuc id IVAR2; 9*f4a2713aSLionel Sambuc} 10*f4a2713aSLionel Sambuc- (id) Meth { return IVAR1; } 11*f4a2713aSLionel Sambuc@end 12*f4a2713aSLionel Sambuc 13