Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / objc-cstyle-args-in-methods.m
blob86df8fdbf1f7a4ac8c9a719a2d329694ea17af5b
1 // RUN: %clang_cc1  -fsyntax-only -Wno-deprecated-declarations -verify -Wno-objc-root-class %s
3 @interface Foo 
4 - (id)test:(id)one, id two;
5 - (id)bad:(id)one, id two, double three;
6 @end
8 @implementation Foo
9 - (id)test:(id )one, id two {return two; } 
10 - (id)bad:(id)one, id two, double three { return two; }
11 @end
14 int main(void) {
15         Foo *foo;
16         [foo test:@"One", @"Two"];
17         [foo bad:@"One", @"Two"]; // expected-error {{too few arguments to method call}}
18         [foo bad:@"One", @"Two", 3.14];
19         [foo bad:@"One", @"Two", 3.14, @"Two"]; // expected-error {{too many arguments to method call}}