summaryrefslogtreecommitdiffstats
path: root/test/Index/targeted-cursor.m.h
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2012-02-24 01:12:38 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2012-02-24 01:12:38 +0000
commit8cceefac395d476114b3d4ecd7e969b2e1c9271d (patch)
treead5d5a7d39dd408d1a5da0b7a8e4e039c8054e85 /test/Index/targeted-cursor.m.h
parent4970ef8e3527ac356c3e9fde0710561fcb63e424 (diff)
[PCH] When keeping track of top-level decls for "targeted deserialization"
make sure we don't mistake ParmVarDecls for top-level decls. Fixes rdar://10920009. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151330 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Index/targeted-cursor.m.h')
-rw-r--r--test/Index/targeted-cursor.m.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Index/targeted-cursor.m.h b/test/Index/targeted-cursor.m.h
new file mode 100644
index 0000000000..735c7bd08f
--- /dev/null
+++ b/test/Index/targeted-cursor.m.h
@@ -0,0 +1,7 @@
+
+@interface I
+
+-(void)mm:(void (^)(I*))block;
+-(void)mm2:(I*)i;
+
+@end