diff options
Diffstat (limited to 'clang/test/PCH/objc_exprs.h')
-rw-r--r-- | clang/test/PCH/objc_exprs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/PCH/objc_exprs.h b/clang/test/PCH/objc_exprs.h index ea6f275df98..4d58c1fc682 100644 --- a/clang/test/PCH/objc_exprs.h +++ b/clang/test/PCH/objc_exprs.h @@ -1,5 +1,6 @@ @protocol foo; +@class itf; // Expressions typedef typeof(@"foo" "bar") objc_string; @@ -10,3 +11,5 @@ typedef typeof(@protocol(foo)) objc_protocol; // Types. typedef typeof(id<foo>) objc_id_protocol_ty; +typedef typeof(itf*) objc_interface_ty; +typedef typeof(itf<foo>*) objc_qual_interface_ty; |