mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 03:55:48 -04:00

This is at least good documentation, but also opens the possibility of using pipefail. llvm-svn: 185652
5 lines
147 B
C++
5 lines
147 B
C++
// RUN: not %clang_cc1 -std=c++11 -E %s 2>&1 | grep 'error: raw string missing terminating delimiter )foo"'
|
|
|
|
const char *str = R"foo(abc
|
|
def)bar";
|