aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/obj-c++.dg/too-many-args.mm
blob: 6fee1b31bd538fa65f83920d91524d1a61a22798 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */

@interface SomeClass
+ method:(int)foo;
@end

int main(void) {
    [SomeClass method:3, 4];	/* { dg-error "too many arguments to method \\'method:\\'" } */
    return 0;
}