blob: 2bd62670f226325c0207819b11c28b7e488c4ab4 [file] [log] [blame]
// 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);
}