diff options
Diffstat (limited to 'test/FixIt/typo.c')
-rw-r--r-- | test/FixIt/typo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/FixIt/typo.c b/test/FixIt/typo.c index 88d9dc6..0bafd1b 100644 --- a/test/FixIt/typo.c +++ b/test/FixIt/typo.c @@ -30,7 +30,7 @@ void test() { 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'?}} + 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; |