cselib: Discard useless locs of preserved VALUEs [PR116627]
[official-gcc.git] / gcc / testsuite / g++.dg / template / ctor6.C
blob4f21dc9ebf8d64cf0d1a7593552b09bcd3eb310a
1 // PR c++/25663
3 template<int> struct A
5   A(int);
6 };
8 void foo()
10   A<0>(A<0>(0));