From 52fdc568e9412f0afe401fb36eac93814846650a Mon Sep 17 00:00:00 2001 From: Fariborz Jahanian Date: Tue, 18 Jun 2013 15:54:30 +0000 Subject: [PATCH] Fix buildbot failure. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184199 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/SemaObjC/call-super-2.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/SemaObjC/call-super-2.m b/test/SemaObjC/call-super-2.m index 8927f3b528..c33e7ab264 100644 --- a/test/SemaObjC/call-super-2.m +++ b/test/SemaObjC/call-super-2.m @@ -35,7 +35,7 @@ id objc_getClass(const char *s); @implementation Derived + (int) class_func1 { - int i = (size_t)[self class_func0]; // expected-warning {{class method '+class_func0' not found (return type defaults to 'id'); did you mean '+class_func}} + int i = (size_t)[self class_func0]; // expected-warning {{class method '+class_func0' not found (return type defaults to 'id')}} return i + (size_t)[super class_func0]; // expected-warning {{class method '+class_func0' not found (return type defaults to 'id')}} } + (int) class_func2 -- 2.40.0