]> granicus.if.org Git - clang/commitdiff
Test case for my last patch for implementation of static protocoled type
authorFariborz Jahanian <fjahanian@apple.com>
Sat, 8 Dec 2007 01:00:55 +0000 (01:00 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Sat, 8 Dec 2007 01:00:55 +0000 (01:00 +0000)
used as reciver type of a message expression.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44693 91177308-0d34-0410-b5e6-96231b3b80d8

test/Sema/static-type-protocol-1.m [new file with mode: 0644]

diff --git a/test/Sema/static-type-protocol-1.m b/test/Sema/static-type-protocol-1.m
new file mode 100644 (file)
index 0000000..6a6ec40
--- /dev/null
@@ -0,0 +1,27 @@
+// RUN: clang -rewrite-test %s
+
+@protocol Proto
+- (void) ProtoDidget;
+@end
+
+@protocol MyProto <Proto>
+- (void) widget;
+@end
+
+@interface Foo 
+- (void)StillMode;
+@end
+
+@interface Container
++ (void)MyMeth;
+@end
+
+@implementation Container
++ (void)MyMeth
+{
+  Foo *view;
+  [(Foo <MyProto> *)view StillMode];
+  [(Foo <MyProto> *)view widget];
+  [(Foo <MyProto> *)view ProtoDidget];
+}
+@end