[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Parser / placeholder-recovery.m
blobd49c8efb78eb987838231b9ca9ffe096a9767e3d
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 @protocol NSObject
4 @end
6 @protocol <#protocol name#> <NSObject> // expected-error {{editor placeholder in source file}}
7 // expected-note@-1 {{protocol started here}}
9 // FIXME: We could do much better with this, if we recognized
10 // placeholders somehow. However, we're content with not generating
11 // bogus 'archaic' warnings with bad location info.
12 <#methods#> // expected-error {{editor placeholder in source file}}
14 @end // expected-error {{prefix attribute must be followed by an interface, protocol, or implementation}} expected-error {{missing '@end'}}