[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / CodeGenObjC / nullptr-assert.m
blob06e50db35c4df10ab75584c0226616289b7e0bab
1 // RUN: %clang_cc1 -Wno-objc-root-class -o /dev/null -triple x86_64-- -emit-llvm %s
2 // REQUIRES: asserts
3 // Verify there is no assertion.
5 @interface A
6 @end
8 extern A *a;
10 @interface X
11 @end
13 @implementation X
15 -(void)test {
16   struct S {
17     A *a;
18     int b;
19   };
20   struct S s[] = {{a, 0}, {(void *)0, 0}};
22 @end