1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2 // expected-no-diagnostics
13 (void)((bar!= 0) ? bar : 0);
14 (void)((cl != 0) ? cl : 0);
15 (void)((f != 0) ? 0 : f);
16 return (0 == 1) ? 0 : bar;
26 using T = decltype(true ? q : p);
27 using T = const A * const *;