diff options
Diffstat (limited to 'clang/test/SemaObjC')
-rw-r--r-- | clang/test/SemaObjC/ivar-sem-check-1.m | 2 | ||||
-rw-r--r-- | clang/test/SemaObjC/property-1.m | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/SemaObjC/ivar-sem-check-1.m b/clang/test/SemaObjC/ivar-sem-check-1.m index 4e464578fde..3416b31112a 100644 --- a/clang/test/SemaObjC/ivar-sem-check-1.m +++ b/clang/test/SemaObjC/ivar-sem-check-1.m @@ -9,7 +9,7 @@ typedef int FOO(); int arr[]; // expected-error {{field 'arr' has incomplete type}} struct S IC; // expected-error {{field 'IC' has incomplete type}} struct T { // expected-note {{previous definition is here}} - struct T {} X; // expected-error {{nested redefinition of 'struct'}} + struct T {} X; // expected-error {{nested redefinition of 'T'}} }YYY; FOO BADFUNC; // expected-error {{field 'BADFUNC' declared as a function}} int kaka; // expected-note {{previous definition is here}} diff --git a/clang/test/SemaObjC/property-1.m b/clang/test/SemaObjC/property-1.m index 6d13a7b8c6a..7e015d01b74 100644 --- a/clang/test/SemaObjC/property-1.m +++ b/clang/test/SemaObjC/property-1.m @@ -18,7 +18,7 @@ @synthesize d1; // expected-error {{synthesized property 'd1' must either be named the same as}} @dynamic bad; // expected-error {{property implementation must have its declaration in interface 'I'}} @synthesize prop_id; // expected-error {{synthesized property 'prop_id' must either be named the same}} -@synthesize prop_id = IVAR; // expected-error {{type of property 'prop_id' does not match type of ivar 'IVAR'}} +@synthesize prop_id = IVAR; // expected-error {{type of property 'prop_id' does not match type of ivar 'IVAR'}} @synthesize name; // OK! property with same name as an accessible ivar of same name @end |