brintos

brintos / llvm-project-archived public Read only

0
0
Text · 247 B · e7e5db4 Raw
10 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 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@end10