summaryrefslogtreecommitdiffstats
path: root/test/SemaObjCXX/ivar-construct.mm
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaObjCXX/ivar-construct.mm')
-rw-r--r--test/SemaObjCXX/ivar-construct.mm8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/SemaObjCXX/ivar-construct.mm b/test/SemaObjCXX/ivar-construct.mm
index 535d2a0217..a066fca359 100644
--- a/test/SemaObjCXX/ivar-construct.mm
+++ b/test/SemaObjCXX/ivar-construct.mm
@@ -27,3 +27,11 @@ struct Z; // expected-note{{forward declaration}}
@implementation B
@end
+
+// <rdar://problem/11284902>
+template<typename T> struct Incomplete; // expected-note{{declared here}}
+
+@interface C {
+ Incomplete<int> a[4][4][4]; // expected-error{{implicit instantiation of undefined template 'Incomplete<int>'}}
+}
+@end