aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/template42.C
blob: 529aaccd34845ac1fdc1465f87b6f9276c3776cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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()) { }
};

main ()
{
  A<X> a;
  X x (1);
  a.f (x);
}