summaryrefslogtreecommitdiff
path: root/test/SemaObjCXX/composite-objc-pointertype.mm
blob: 35739a893624643acbd834c077a8dd319b3da87e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
// expected-no-diagnostics

@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