blob: 360ac69574954451f6e04871ba38fb89e545a8ba [file] [log] [blame]
Alexander Kornienko48c99002013-09-11 18:10:30 +00001// This file contains code and checks, that should work on any platform.
2// There's a set of additional checks for systems with proper support of UTF-8
3// on the standard output in fixit-unicode-with-utf8-output.c.
4
Rafael Espindola925213b2013-07-04 16:16:58 +00005// RUN: not %clang_cc1 -fsyntax-only %s 2>&1 | FileCheck -strict-whitespace %s
6// RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck -check-prefix=CHECK-MACHINE %s
Benjamin Kramer29f90e82012-07-12 08:20:49 +00007
8struct Foo {
9 int bar;
10};
11
Jordan Rose9dd82c12012-07-20 18:50:51 +000012// PR13312
Benjamin Kramer29f90e82012-07-12 08:20:49 +000013void test1() {
14 struct Foo foo;
Jordan Rose7f43ddd2013-01-24 20:50:46 +000015 foo.bar = 42
16// CHECK: error: non-ASCII characters are not allowed outside of literals and identifiers
17// CHECK: {{^ \^}}
Benjamin Kramer29f90e82012-07-12 08:20:49 +000018// CHECK: error: expected ';' after expression
19// Make sure we emit the fixit right in front of the snowman.
Jordan Rose7f43ddd2013-01-24 20:50:46 +000020// CHECK: {{^ \^}}
21// CHECK: {{^ ;}}
Jordan Rose9dd82c12012-07-20 18:50:51 +000022
Alexander Kornienko48c99002013-09-11 18:10:30 +000023// CHECK-MACHINE: fix-it:"{{.*}}":{[[@LINE-8]]:15-[[@LINE-8]]:18}:""
24// CHECK-MACHINE: fix-it:"{{.*}}":{[[@LINE-9]]:15-[[@LINE-9]]:15}:";"
Jordan Rose9dd82c12012-07-20 18:50:51 +000025}
26
27
28int printf(const char *, ...);
29void test2() {
30 printf("∆: %d", 1L);
31// CHECK: warning: format specifies type 'int' but the argument has type 'long'
32// Don't crash emitting a fixit after the delta.
33// CHECK: printf("
34// CHECK: : %d", 1L);
35// Unfortunately, we can't actually check the location of the printed fixit,
36// because different systems will render the delta differently (either as a
37// character, or as <U+2206>.) The fixit should line up with the %d regardless.
38
Alexander Kornienko48c99002013-09-11 18:10:30 +000039// CHECK-MACHINE: fix-it:"{{.*}}":{[[@LINE-9]]:16-[[@LINE-9]]:18}:"%ld"
Benjamin Kramer29f90e82012-07-12 08:20:49 +000040}
Jordan Rosee2fad6d2013-06-07 17:16:01 +000041
42void test3() {
43 int ssss = 42;
44 int a = sss; // expected-error{{use of undeclared identifier 'กsss'; did you mean 'กssss'?}}
45// CHECK: {{^ \^}}
46// CHECK: {{^ [^ ]+ssss}}
47// CHECK-MACHINE: fix-it:"{{.*}}":{[[@LINE-3]]:11-[[@LINE-3]]:17}:"\340\270\201ssss"
48
49 int ssss = 42;
50 int b = sss; // expected-error{{use of undeclared identifier 'ssกs'; did you mean 'ssกss'?}}
51// CHECK: {{^ \^}}
52// CHECK: {{^ ss.+ss}}
53// CHECK-MACHINE: fix-it:"{{.*}}":{[[@LINE-3]]:11-[[@LINE-3]]:17}:"ss\340\270\201ss"
54
Alexander Kornienko48c99002013-09-11 18:10:30 +000055 int s一二三 = 42;
56 int b一二三四五六七 = ss一二三; // expected-error{{use of undeclared identifier 'ss一二三'; did you mean 's一二三'?}}
57// CHECK-MACHINE: fix-it:"{{.*}}":{[[@LINE-1]]:32-[[@LINE-1]]:43}:"s\344\270\200\344\272\214\344\270\211"
58
59
Jordan Rosee2fad6d2013-06-07 17:16:01 +000060 int sssssssss = 42;
61 int c = sssssssss; // expected-error{{use of undeclared identifier 'sssssssss'; did you mean 'sssssssssก'?}}
62// CHECK: {{^ \^}}
63// CHECK: {{^ sssssssss.+}}
64// CHECK-MACHINE: fix-it:"{{.*}}":{[[@LINE-3]]:11-[[@LINE-3]]:20}:"sssssssss\340\270\201"
65}