John McCall | a2905ea | 2013-02-12 02:08:12 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
2 | // expected-no-diagnostics | ||||
3 | |||||
4 | __attribute__((objc_root_class)) | ||||
5 | @interface Root { | ||||
6 | Class isa; | ||||
7 | } | ||||
8 | @end | ||||
9 | |||||
10 | @interface A | ||||
11 | @property (strong) id x; | ||||
12 | @end | ||||
13 | |||||
14 | // rdar://13193560 | ||||
15 | void test0(A *a) { | ||||
16 | int kind = _Generic(a.x, id : 0, int : 1, float : 2); | ||||
17 | } |