1 /* When there is only one candidate method available, make sure the
2 compiler uses its argument/return types when constructing the
3 message sends (so that proper C/C++ argument conversions may
7 #include <objc/Object.h>
10 #define CHECK_IF(expr) if(!(expr)) abort()
12 static double d = 4.5920234e2;
14 @interface Foo : Object
15 -(void) brokenType: (int)x floatingPoint: (double)y;
20 -(void) brokenType: (int)x floatingPoint: (double)y
30 [foo brokenType: (int)d floatingPoint: d];