view clang/test/SemaObjC/warn-selector-selection.m @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
line wrap: on
line source

// RUN: %clang_cc1 -fsyntax-only -verify %s

@interface Object 
- (void)foo;
@end

@interface Class1
- (void)setWindow:(Object *)wdw;
@end

void foo(void) {
  Object *obj;
  [obj setWindow:0]; // expected-warning{{'Object' may not respond to 'setWindow:'}}
}