blob: 7813c999f008a80893bafda4f961af5703e624d7 [file] [log] [blame]
Craig Topper54edcca2011-08-11 04:06:15 +00001// RUN: %clang_cc1 -std=c++0x -E %s 2>&1 | grep 'error: raw string missing terminating delimiter )foo"'
2
3const char *str = R"foo(abc
4def)bar";
5// RUN: %clang_cc1 -std=c++0x -E %s 2>&1 | grep 'error: raw string missing terminating delimiter )foo"'
6
7const char *str = R"foo(abc
8def)bar";