How would this function be called? -(int)foo:(int)a b:(int)c;
-(int)foo:(int)a b:(int)c;
[self foo:5:10:20];
[self foo:5 b:10];
self.foo(5, b:10);
This code contains an error.