(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
constexpr-initlist5.C
// PR c++/50024
// { dg-do compile { target c++11 } }

template< class T >
struct Container
{
  Container(){
    int* ptr = new int{};
  }
};

int main() {
    Container< int > c;
}