1 // RUN: %clang_cc1 -fsyntax-only -verify %s
4 @interface A // expected-note {{class started here}}
7 @implementation A // expected-error {{missing '@end'}}
10 @interface B { // expected-note {{class started here}}
13 @implementation B // expected-error {{missing '@end'}}
16 @interface C // expected-note 2 {{class started here}}
19 @implementation C // expected-error 2 {{missing '@end'}}