Remove duplicate test

From-SVN: r22270
This commit is contained in:
Mark Mitchell 1998-09-05 19:11:15 +00:00
parent 55953cea37
commit 00dd3ccd9b

View File

@ -1,16 +0,0 @@
// Build don't run:
// GROUPS passed templates
struct S
{
template <class T>
void foo(T t);
template <>
void foo<int>(int i) { }
};
int main()
{
S s;
s.template foo<int>(3.0);
}