2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi-template13.C
blob65ccd0aaa7f7384bbeea23a7b859235e2cd0bb63
1 // PR c++/58704
2 // { dg-do compile { target c++11 } }
4 struct A {};
6 template<typename> struct B
8   A a[1] = { };
9 };
11 B<int> b;