1 template <int i>
2 struct S
3 {
SS4   S () { union { int a; }; a = 0; }
5 };
6 S<0> s;
7