llvm-project/clang/test/Lexer/string-literal-errors.cpp
Timm Bäder f63155aaa6 [clang] Show line numbers in diagnostic code snippets
Show line numbers to the left of diagnostic code snippets and increase
the numbers of lines shown from 1 to 16.

Differential Revision: https://reviews.llvm.org/D147875
2023-05-31 07:26:03 +02:00

28 lines
1.1 KiB
C++

// RUN: not %clang_cc1 -fsyntax-only -fno-diagnostics-show-line-numbers %s 2>&1 | FileCheck -strict-whitespace %s
void foo() {
(void)"\q \u123z \x \U \U123 \U12345 \u123 \xyzzy \777 \U"
// CHECK: {{^ \(void\)"\\q \\u123z \\x \\U \\U123 \\U12345 \\u123 \\xyzzy \\777 \\U"$}}
//
// (void)"\q \u123z \x \U \U123 \U12345 \u123 \xyzzy \777 \U"
// CHECK: {{^ \^~$}}
// CHECK: {{^ \^~~~~$}}
// CHECK: {{^ \^~$}}
// CHECK: {{^ \^~$}}
// CHECK: {{^ \^~~~~$}}
// CHECK: {{^ \^~~~~~~$}}
// CHECK: {{^ \^~~~~$}}
// CHECK: {{^ \^~$}}
// CHECK: {{^ \^~~~$}}
// CHECK: {{^ \^~$}}
"123 \x \z";
// CHECK: {{^ "123 \\x \\z";$}}
//
// "123 \x \z";
// CHECK: {{^ \^~$}}
// CHECK: {{^ \^~$}}
}
#define foo() lots and lots of tokens, need at least 8 to fill up the smallvector buffer #BadThingsHappenNow