[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / anonunion2.C
blobcb3c12dff1ed485765a3f6adff327d3d1260df8b
1 template <int i>
2 struct S
4   S () { union { int a; }; a = 0; }
5 };
6 S<0> s;