OSDN Git Service

* g++.old-deja/g++.pt/static11.C: Add xtensa-*-elf* to the
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit11.C
1 // Build don't link:
2 // GROUPS passed templates
3 template <class T>
4 void foo(T t);
5
6 template <class T>
7 struct S {};
8
9 int main()
10 {
11   S<int> si;
12
13   foo<S<int> >(si);
14 }