blob: a870794b27ced5d65f1fa52d8f5c8809cf8346a4 [file] [log] [blame]
David Blaikie07b49a82012-03-18 02:56:47 +00001// RUN: %clang_cc1 -verify -x c++ -std=c++11 %s
2// RUN: %clang_cc1 -fdiagnostics-parseable-fixits -x c++ -std=c++11 %s 2>&1 | FileCheck %s
3
4struct X {
5 int i;
6};
7
8void func() {
9 // CHECK: fix-it:"{{.*}}":{10:6-10:8}:"{}"
10 X x(); // expected-warning {{function declaration}} expected-note{{replace parentheses with an initializer}}
11
12 typedef int *Ptr;
13 // CHECK: fix-it:"{{.*}}":{14:8-14:10}:" = nullptr"
14 Ptr p(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
15
16 // CHECK: fix-it:"{{.*}}":{17:15-17:17}:" = u'\\0'"
17 char16_t u16(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
18
19 // CHECK: fix-it:"{{.*}}":{20:15-20:17}:" = U'\\0'"
20 char32_t u32(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
21}