1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -fsyntax-only -verify %s 2*f4a2713aSLionel Sambuc// expected-no-diagnostics 3*f4a2713aSLionel Sambuc 4*f4a2713aSLionel Sambuc__attribute__((objc_root_class)) 5*f4a2713aSLionel Sambuc@interface Root { 6*f4a2713aSLionel Sambuc Class isa; 7*f4a2713aSLionel Sambuc} 8*f4a2713aSLionel Sambuc@end 9*f4a2713aSLionel Sambuc 10*f4a2713aSLionel Sambuc@interface A 11*f4a2713aSLionel Sambuc@property (strong) id x; 12*f4a2713aSLionel Sambuc@end 13*f4a2713aSLionel Sambuc 14*f4a2713aSLionel Sambuc// rdar://13193560 15*f4a2713aSLionel Sambucvoid test0(A *a) { 16*f4a2713aSLionel Sambuc int kind = _Generic(a.x, id : 0, int : 1, float : 2); 17*f4a2713aSLionel Sambuc} 18