1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2 // expected-no-diagnostics
13 + (void) _defaultMinSize { };
14 static void _initCommon(void) {
16 [graphicClass _defaultMinSize];
19 - (void) Meth { [self Forw]; } // No warning now
21 - (int) func { return prop; } // compiles - synthesized ivar will be accessible here.
22 - (int)get_g { return global; } // No warning here - synthesized ivar will be accessible here.
24 @synthesize prop1=global;