1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
---|---|
2 | // rdar://8283484 |
3 | @interface blah { // expected-note {{class started here}} |
4 | @private |
5 | } |
6 | // since I forgot the @end here it should say something |
7 | |
8 | @interface blah // expected-error {{missing '@end'}} |
9 | @end // and Unknown type name 'end' here |
10 | |
11 |