blob: 8bbfa071adc00120d3f22d6bbcb37e0124c7451a [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -verify %s
@interface Foo
@end
@implementation Foo
- (id)test {
id bar;
Class cl;
Foo *f;
(void)((bar!= 0) ? bar : 0);
(void)((cl != 0) ? cl : 0);
(void)((f != 0) ? 0 : f);
return (0 == 1) ? 0 : bar;
}
@end