diff options
Diffstat (limited to 'clang/test/PCH/objc_exprs.h')
-rw-r--r-- | clang/test/PCH/objc_exprs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/test/PCH/objc_exprs.h b/clang/test/PCH/objc_exprs.h index 807304c20f8..e4952f5929b 100644 --- a/clang/test/PCH/objc_exprs.h +++ b/clang/test/PCH/objc_exprs.h @@ -1,11 +1,13 @@ @protocol foo; +@protocol foo2 +@end @class itf; // Expressions typedef typeof(@"foo" "bar") objc_string; typedef typeof(@encode(int)) objc_encode; -typedef typeof(@protocol(foo)) objc_protocol; +typedef typeof(@protocol(foo2)) objc_protocol; typedef typeof(@selector(noArgs)) objc_selector_noArgs; typedef typeof(@selector(oneArg:)) objc_selector_oneArg; typedef typeof(@selector(foo:bar:)) objc_selector_twoArg; |