source: trunk/src/gcc/gcc/testsuite/g++.old-deja/g++.pt/memtemp52.C@ 2

Last change on this file since 2 was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 281 bytes
Line 
1// Build don't link:
2// GROUPS passed templates membertemplates
3template<class T, int N>
4class A { };
5
6template<int N>
7struct X {
8 template<class T2, int N2>
9 void f(A<T2,N>&, A<int,N2>&)
10 { }
11};
12
13
14void foo()
15{
16 X<3> x;
17 A<char*, 3> a1;
18 A<int, 2> a2;
19 x.f(a1, a2);
20}
Note: See TracBrowser for help on using the repository browser.