[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / Parser / objc-error-qualified-implementation.m
blob684c388a584ead69114293d4bd52022fb7440b14
1 // RUN: %clang_cc1 -fsyntax-only -Wno-objc-root-class -verify %s
2 // rdar://12233858
4 @protocol P
5 @end
7 @interface I @end
9 @implementation I<P> @end // expected-error {{@implementation declaration cannot be protocol qualified}}
11 @interface J < P,P >
12 @end
15 @implementation J < P,P > // expected-error {{@implementation declaration cannot be protocol qualified}}
16 @end
18 @interface K @end
20 @implementation K <P // expected-error {{@implementation declaration cannot be protocol qualified}} expected-error {{expected '>'}} expected-note {{to match this '<'}}
21 @end
23 // rdar://13920026
24 @implementation I (Cat) <P>  // expected-error {{@implementation declaration cannot be protocol qualified}}
25 - (void) Meth {}
26 @end
28 @implementation I (Cat1) <P // expected-error {{@implementation declaration cannot be protocol qualified}} expected-error {{expected '>'}} expected-note {{to match this '<'}}
29 @end