Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / explicit8.C
blob3a75aa0dbb56c72d843801765cf9c2b8eb208e41
1 // { dg-do assemble  }
2 // GROUPS passed templates
3 template <class T, class U>
4 void foo(T t, U u);
6 template <class U>
7 void foo(double, U) {}
9 void baz()
11   foo<const char*>(3.0, "abc");
12   foo<const char*, double>("abc", 3.0);