OSDN Git Service

PR c++/36628
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / initlist13.C
1 // PR c++/39056
2 // { dg-do compile }
3 // { dg-options "-std=gnu++0x" }
4
5 #include <complex>
6
7 __complex__ int i ({0});
8 std::complex<int> i2 ({0});