Commit 00dd3ccd by Mark Mitchell

Remove duplicate test

From-SVN: r22270
parent 55953cea
// 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);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment