diff options
Diffstat (limited to 'test/FixIt/typo.c')
-rw-r--r-- | test/FixIt/typo.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/test/FixIt/typo.c b/test/FixIt/typo.c index 01ff3a0..88d9dc6 100644 --- a/test/FixIt/typo.c +++ b/test/FixIt/typo.c @@ -1,7 +1,8 @@ // RUN: %clang_cc1 -fsyntax-only -verify %s // RUN: cp %s %t -// RUN: %clang_cc1 -fsyntax-only -fixit -x c %t || true +// RUN: not %clang_cc1 -fsyntax-only -fixit -x c %t // RUN: %clang_cc1 -fsyntax-only -pedantic -Werror -x c %t +// RUN: grep "Rectangle" %t struct Point { float x, y; }; @@ -23,3 +24,14 @@ struct Window window = { topleft.x = 3.14, // expected-error{{field designator 'topleft' does not refer to any field in type 'struct Rectangle'; did you mean 'top_left'?}} 2.71818, 5.0, 6.0, Red }; + +void test() { + Rectangle r1; // expected-error{{must use 'struct' tag to refer to type 'Rectangle'}} + r1.top_left.x = 0; + + typedef struct Rectangle Rectangle; // expected-note{{'Rectangle' declared here}} + rectangle *r2 = &r1; // expected-error{{ unknown type name 'rectangle'; did you mean 'Rectangle'?}} + r2->top_left.y = 0; + unsinged *ptr = 0; // expected-error{{use of undeclared identifier 'unsinged'; did you mean 'unsigned'?}} + *ptr = 17; +} |