Home
last modified time | relevance | path

Searched refs:typed_ptr (Results 1 – 1 of 1) sorted by relevance

/llvm-project/clang/test/C/C23/
H A Dn3042.c39 int *typed_ptr = nullptr; in test() local
40 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 …]