aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/defarg3.C
blob: 9a7e0460497f3ced6239218555cd27d57f47b573 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Build don't link:

template <class T> 
struct S;

template <class T = int>
struct S {};

template <class T> 
struct S;

void f()
{
  S<> s;
}