1 // RUN: %clang_cc1 -Wobjc-multiple-method-names -x objective-c %s -verify
5 - (void)foo:(float)i; // expected-note {{using}}
9 - (void)foo:(int)i __attribute__((unavailable));
13 - (void)foo:(char)i; // expected-note {{also found}}
17 [i foo:4.0f]; // expected-warning {{multiple methods named 'foo:' found}}