1 // bindgen-flags: -- -x objective-c 2 // bindgen-osx-only 3 4 @interface Foo 5 + (void)method; 6 + (void)methodWithInt:(int)foo; 7 + (void)methodWithFoo:(Foo*)foo; 8 + (int)methodReturningInt; 9 + (Foo*)methodReturningFoo; 10 + (void)methodWithArg1:(int)intvalue andArg2:(char*)ptr andArg3:(float)floatvalue; 11 @end 12