Commit 65a0aad5 by Mark Mitchell

New test case

From-SVN: r32786
parent 02ff568a
// Build don't link:
// Origin: Mark Mitchell <mitchell@codesourcery.com>
template <class T, class V>
struct S
{
};
template <class T>
struct S<T, int>
{
template <class U>
void f (U);
};
template <class T>
template <class U>
void S<T, int>::f (U)
{
}
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