Searched refs:typed_ptr (Results 1 – 1 of 1) sorted by relevance
39 int *typed_ptr = nullptr; in test() local40 typed_ptr = nullptr; in test()51 typed_ptr = null_val; in test()64 typed_ptr = null_val; in test()141 _Generic(1 ? typed_ptr : null_val, typeof(typed_ptr) : 0); in test()142 _Generic(1 ? null_val : typed_ptr, typeof(typed_ptr) : 0); in test()143 _Generic(1 ? nullptr : typed_ptr, typeof(typed_ptr) : 0); in test()144 _Generic(1 ? typed_ptr : nullptr, typeof(typed_ptr) : 0); in test()149 _Generic(typed_ptr ?: null_val, typeof(typed_ptr) : 0); in test()150 …_Generic(null_val ?: typed_ptr, typeof(typed_ptr) : 0); // expected-warning {{implicit conversion … in test()[all …]