Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / complit2.C
blobcf3856d474e799bf4f8dee408df764ca4805937e
1 // PR c++/31038
2 // { dg-options "" }
4 template<int> void foo()
6   int i = (int) { 0 };
9 template void foo<0>();
10 int f();
12 template<int> void bar()
14   int i = (int) { f() };
17 template void bar<0>();