OSDN Git Service

2001-02-26 Jeffrey Oldham <oldham@codesourcery.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit25.C
1 // Build don't link:
2 // GROUPS passed templates
3 template <int I>
4 class S {};
5
6 template <int I, class T>
7 void foo(T t, S<I>);
8
9 void bar()
10 {
11   S<3> s3;
12   foo<3>("abc", s3);
13 }