aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/template2.C
blob: ca60fa7e95a065a4de73cb2dd824009939fa77c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Build don't link: 
// GROUPS passed templates
template <class Q>
class Conc {
public:
	static int body();
};

template <class Q>
int Conc<Q>::body() {return 0;}

int main () {
	Conc<int> s2;
}