Merge from mainline (163495:164578).
[official-gcc/graphite-test-results.git] / gcc / testsuite / obj-c++.dg / too-many-args.mm
blob6fee1b31bd538fa65f83920d91524d1a61a22798
1 /* { dg-do compile } */
3 @interface SomeClass
4 + method:(int)foo;
5 @end
7 int main(void) {
8     [SomeClass method:3, 4];    /* { dg-error "too many arguments to method \\'method:\\'" } */
9     return 0;