2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / ext / complit11.C
blob7b41795ece3713f3fad91cffae9f7ffa2f8cc900
1 // { dg-do compile }
2 // { dg-options "" }
4 struct A { int i; };
6 template<int t>
7 void foo()
9     ((struct A) { 0 }).i += 1;
12 void g(void)
14   foo<0>();