2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / template2.C
blobcb1d674ea825d7155cc412751ce2391f3683ea7c
1 // { dg-do assemble  }
2 // GROUPS passed templates
3 template <class Q>
4 class Conc {
5 public:
6         static int body();
7 };
9 template <class Q>
10 int Conc<Q>::body() {return 0;}
12 int main () {
13         Conc<int> s2;