diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2013-06-17 17:41:13 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2013-06-17 17:41:13 +0000 |
commit | aaddc09b397e4fee05dd97ef480b0df3ba3788a6 (patch) | |
tree | a7094bd924db27064cbc7d684c733140a6d67301 /clang | |
parent | f1f127368220f52a3280ba347a5532d2914707b6 (diff) | |
download | bcm5719-llvm-aaddc09b397e4fee05dd97ef480b0df3ba3788a6.tar.gz bcm5719-llvm-aaddc09b397e4fee05dd97ef480b0df3ba3788a6.zip |
unbreak buildbot for now.
llvm-svn: 184093
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/SemaObjC/call-super-2.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaObjC/call-super-2.m b/clang/test/SemaObjC/call-super-2.m index 071f9fdfd81..0a07c014074 100644 --- a/clang/test/SemaObjC/call-super-2.m +++ b/clang/test/SemaObjC/call-super-2.m @@ -68,7 +68,7 @@ id objc_getClass(const char *s); } - (int) instance_func1 { - int i = (size_t)[self instance_func0]; // expected-warning {{instance method 'instance_func0' not found (return type defaults to 'id'); did you mean 'instance_func3'?}} + int i = (size_t)[self instance_func0]; // expected-warning {{instance method 'instance_func0' not found (return type defaults to 'id'); did you mean}} return i + (size_t)[super instance_func0]; // expected-warning {{'Object' may not respond to 'instance_func0'}} } - (int) instance_func2 |