brintos

brintos / llvm-project-archived public Read only

0
0
Text · 265 B · fa367dc Raw
17 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4__attribute__((objc_root_class))5@interface Root {6  Class isa;7}8@end9 10@interface A11@property (strong) id x;12@end13 14void test0(A *a) {15  int kind = _Generic(a.x, id : 0, int : 1, float : 2);16}17