aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/initlist13.C
blob: bba226798ea39a636e0abb253ad08b80bf191eff (plain)
1
2
3
4
5
6
7
// PR c++/39056
// { dg-do compile { target c++11 } }

#include <complex>

__complex__ int i {0};
std::complex<int> i2 {0};