aboutsummaryrefslogtreecommitdiff
path: root/test/SemaObjC/default-synthesize-2.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaObjC/default-synthesize-2.m')
-rw-r--r--test/SemaObjC/default-synthesize-2.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaObjC/default-synthesize-2.m b/test/SemaObjC/default-synthesize-2.m
index 3756413bd83f6..20c045e60e06d 100644
--- a/test/SemaObjC/default-synthesize-2.m
+++ b/test/SemaObjC/default-synthesize-2.m
@@ -41,7 +41,7 @@
// Test3
@interface Test3
{
- id uid; // expected-note {{ivar is declared here}}
+ id uid; // expected-note {{instance variable is declared here}}
}
@property (readwrite, assign) id uid; // expected-note {{property declared here}}
@end
@@ -119,7 +119,7 @@ int* _object;
@interface Test8
{
id _y;
- id y; // expected-note {{ivar is declared here}}
+ id y; // expected-note {{instance variable is declared here}}
}
@property(copy) id y; // expected-note {{property declared here}}
@end