summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/comptypes-7.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaObjC/comptypes-7.m')
-rw-r--r--test/SemaObjC/comptypes-7.m5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/SemaObjC/comptypes-7.m b/test/SemaObjC/comptypes-7.m
index fedad1b..2519c41 100644
--- a/test/SemaObjC/comptypes-7.m
+++ b/test/SemaObjC/comptypes-7.m
@@ -66,5 +66,10 @@ int main()
if (obj_C == j) foo() ; // expected-warning {{comparison of distinct pointer types ('Class' and 'int *')}}
if (j == obj_C) foo() ; // expected-warning {{comparison of distinct pointer types ('int *' and 'Class')}}
+ Class bar1 = Nil;
+ Class <MyProtocol> bar = Nil;
+ bar = bar1;
+ bar1 = bar;
+
return 0;
}
OpenPOWER on IntegriCloud