aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Beaumont-Gay <matthewbg@google.com>2011-02-23 19:39:05 +0000
committerMatt Beaumont-Gay <matthewbg@google.com>2011-02-23 19:39:05 +0000
commitf565f11ded9b2662819958c42e96d8c3036bd21f (patch)
tree0450c9a361c9de66f9c97a39ad649beff247a628
parentcd50e136ad7dc721822f5e6350769a37c216612d (diff)
fix typo in test too
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126327 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/SemaObjC/dist-object-modifiers.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaObjC/dist-object-modifiers.m b/test/SemaObjC/dist-object-modifiers.m
index f758b3f332..e489bb17e0 100644
--- a/test/SemaObjC/dist-object-modifiers.m
+++ b/test/SemaObjC/dist-object-modifiers.m
@@ -14,7 +14,7 @@
@implementation I
- (id)serverPID { return 0; } // expected-warning {{conflicting distributed object modifiers on return type in implementation of 'serverPID'}}
-- (void)doStuff:(id)clientId { } // expected-warning {{conflicting distributed object modifiers on patameter type in implementation of 'doStuff:'}}
+- (void)doStuff:(id)clientId { } // expected-warning {{conflicting distributed object modifiers on parameter type in implementation of 'doStuff:'}}
- (bycopy id)Ok { return 0; }
+ (id) stillMore : (id)Arg : (bycopy id)Arg1 { return Arg; } // expected-warning {{conflicting distributed object modifiers on return type in implementation of 'stillMore::'}} \
// expected-warning 2{{conflicting distributed object modifiers on patameter type in implementation of 'stillMore::'}}