blob: 63122ceb0b4d8995d82dfa3d8ac0bbc7ec8bb5b2 [file] [log] [blame]
// { dg-do run }
// Testcase for not evaluating template default args if they are
// never used.
struct X {
X(int) { }
};
template <class T>
struct A {
void f (T t = T()) { }
};
int main ()
{
A<X> a;
X x (1);
a.f (x);
}