brintos

brintos / llvm-project-archived public Read only

0
0
Text · 360 B · 8a5c5be Raw
13 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3// expected-note@+1 {{previous definition is here}}4@interface blah { // expected-note {{class started here}}5    @private6}7// since I forgot the @end here it should say something8 9// expected-error@+1 {{duplicate interface definition for class 'blah'}}10@interface blah  // expected-error {{missing '@end'}}11@end12 13