view clang/test/SemaObjC/multiple-method-names.m @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents 1d019706d866
children
line wrap: on
line source

// RUN: %clang_cc1 -Wobjc-multiple-method-names -x objective-c %s -verify
// PR22047

@interface Face0
- (void)foo:(float)i; // expected-note {{using}}
@end

@interface Face1
- (void)foo:(int)i __attribute__((unavailable));
@end

@interface Face2
- (void)foo:(char)i; // expected-note {{also found}}
@end

void f(id i) {
  [i foo:4.0f]; // expected-warning {{multiple methods named 'foo:' found}}
}