2 // { dg-do compile { target c++20 } }
3 // Test we don't warn in an unevaluated operand.
5 #include <initializer_list>
8 concept default_initializable
12 (void) ::new _Tp; // { dg-bogus "does not extend the lifetime" }
15 static_assert(default_initializable<std::initializer_list<int>>);