1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3@implementation I (C) // expected-error {{cannot find interface declaration for 'I'}}
4
5+ (void)f {
6  self.m; // expected-error {{member reference base type 'Class' is not a structure or union}}
7}
8
9@end
10