Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / Parser / missing-end-3.m
blob8a5c5bec03d63b4c652a825be7cd28f661ede6af
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 // expected-note@+1 {{previous definition is here}}
4 @interface blah { // expected-note {{class started here}}
5     @private
7 // since I forgot the @end here it should say something
9 // expected-error@+1 {{duplicate interface definition for class 'blah'}}
10 @interface blah  // expected-error {{missing '@end'}}
11 @end