mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-01 01:31:26 +00:00
925213b0fa
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";
|