OSDN Git Service

cp:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit14.C
1 // Build don't link:
2 // GROUPS passed templates
3 template <class T>
4 struct S
5 {
6   template <class U>
7   typename U::R foo(U u);
8 };
9
10
11 void bar()
12 {
13   S<int> si;
14 }