blob: 9990ca29322d5a943e0d451b28b6b3d7d700d96a [file] [log] [blame]
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T>
struct S {
template <class U>
S (U);
};
int main ()
{
S<int> (3.0);
}