blob: 830aa134083183c3b55885b117d7b97b98c4cdbf (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// RUN: %clang_cc1 -fsyntax-only -fmessage-length 60 %s 2>&1 | FileCheck %s
struct B { void f(); };
struct D1 : B {};
struct D2 : B {};
struct DD : D1, D2 {
void g() { f(); }
// Ensure that after line-wrapping takes place, we preserve artificial
// newlines introduced to manually format a section of the diagnostic text.
// CHECK: {{.*}}: error:
// CHECK: struct DD -> struct D1 -> struct B
// CHECK: struct DD -> struct D2 -> struct B
}
|