xref: /minix3/external/bsd/llvm/dist/clang/test/Lexer/cxx0x_raw_string_directives.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only %s
2 // RUN: %clang_cc1 -std=c++98 -fsyntax-only -verify %s
3 
4 // expected-error@8 {{in c++98 only}}
5 #if 0
6 R"(
7 #else
8 #error in c++98 only)"
9 #endif
10