1 // RUN: not %clang_cc1 -triple %ms_abi_triple -ast-print %s -std=gnu++11 \
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.
9 // CHECK-NEXT: } dont_crash_on_syntax_error;
10 // CHECK-NEXT: decltype(nullptr) p;
12 } dont_crash_on_syntax_error
/* missing ; */ decltype(nullptr) p
;