blob: 70c77dc45de90b33210ab740c0139adb39ee3ab2 [file] [log] [blame]
John McCalla2905ea2013-02-12 02:08:12 +00001// 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
15void test0(A *a) {
16 int kind = _Generic(a.x, id : 0, int : 1, float : 2);
17}