[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / SemaCXX / ast-print-crash.cpp
blobc108f666d7e3a13234fdae5b1330fd970ad3ddda
1 // RUN: not %clang_cc1 -triple %ms_abi_triple -ast-print %s -std=gnu++11 \
2 // RUN: | FileCheck %s
4 // The test compiles a file with a syntax error which used to cause a crash with
5 // -ast-print. Compilation fails due to the syntax error, but compiler should
6 // not crash and print out whatever it manager to parse.
8 // CHECK: struct {
9 // CHECK-NEXT: } dont_crash_on_syntax_error;
10 // CHECK-NEXT: decltype(nullptr) p;
11 struct {
12 } dont_crash_on_syntax_error /* missing ; */ decltype(nullptr) p;