brintos

brintos / llvm-project-archived public Read only

0
0
Text · 232 B · 00137ee Raw
13 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s2 3@interface A {4  id xxx;5}6-(int)bar;7@end8@implementation A9-(int)bar {10  return xxx == xxx; // expected-warning {{self-comparison always evaluates to true}}11}12@end13