summaryrefslogtreecommitdiffstats
path: root/test/Rewriter/rewrite-protocol-type-1.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/Rewriter/rewrite-protocol-type-1.m')
-rw-r--r--test/Rewriter/rewrite-protocol-type-1.m24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/Rewriter/rewrite-protocol-type-1.m b/test/Rewriter/rewrite-protocol-type-1.m
new file mode 100644
index 0000000..48dc029
--- /dev/null
+++ b/test/Rewriter/rewrite-protocol-type-1.m
@@ -0,0 +1,24 @@
+// RUN: clang-cc -rewrite-objc %s -o=-
+
+@protocol MyProto1
+@end
+
+@protocol MyProto2
+@end
+
+@interface INTF @end
+
+INTF <MyProto1> *g1;
+
+INTF <MyProto1, MyProto2> *g2, *g3;
+
+INTF <MyProto1> * Func(INTF <MyProto1> *p2, INTF<MyProto1> *p3, INTF *p4, INTF<MyProto1> *p5)
+{
+ return p2;
+}
+
+INTF <MyProto1, MyProto2> * Func1(INTF *p2, INTF<MyProto1, MyProto2> *p3, INTF *p4, INTF<MyProto1> *p5)
+{
+ return p3;
+}
+
OpenPOWER on IntegriCloud