]> granicus.if.org Git - clang/commitdiff
Test case for my last patch.
authorFariborz Jahanian <fjahanian@apple.com>
Tue, 4 Dec 2007 21:48:54 +0000 (21:48 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Tue, 4 Dec 2007 21:48:54 +0000 (21:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44581 91177308-0d34-0410-b5e6-96231b3b80d8

test/Sema/undecl-objc-h.m [new file with mode: 0644]

diff --git a/test/Sema/undecl-objc-h.m b/test/Sema/undecl-objc-h.m
new file mode 100644 (file)
index 0000000..d5103d3
--- /dev/null
@@ -0,0 +1,29 @@
+// RUN: clang -rewrite-test %s | clang
+
+typedef struct S {
+       int * pint;
+       int size;
+}NSRec;
+
+@interface SUPER
+- (NSRec) MainMethod : (NSRec) Arg1 : (NSRec) Arg2;
+@end
+
+@interface MyDerived : SUPER
+{
+       NSRec d;
+}
+- (int) instanceMethod;
+- (int) another : (int) arg;
+- (NSRec) MainMethod : (NSRec) Arg1 : (NSRec) Arg2;
+@end
+
+@implementation MyDerived 
+- (int) instanceMethod {
+  return [self another : [self MainMethod : d : d].size];
+}
+
+- (int) another : (int) arg { return arg; }
+- (NSRec) MainMethod : (NSRec) Arg1 : (NSRec) Arg2 { return Arg2; }
+@end
+