blob: 8a5c5bec03d63b4c652a825be7cd28f661ede6af [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-note@+1 {{previous definition is here}}
@interface blah { // expected-note {{class started here}}
@private
}
// since I forgot the @end here it should say something
// expected-error@+1 {{duplicate interface definition for class 'blah'}}
@interface blah // expected-error {{missing '@end'}}
@end