blob: 7b831cc098b21c52d2989d448f0041665a42e057 [file] [log] [blame]
/* APPLE LOCAL file radar 4491608 */
/* { dg-do compile } */
__attribute__((objc_root_class)) @interface SomeClass
+ method:(int)foo;
@end
int main(void) {
[SomeClass method:3, 4]; /* { dg-error "too many arguments to function \\'method:\\'" } */
return 0;
}