blob: c07083a0a79ec5e7c99557e3221c58a3c8141e52 [file] [log] [blame]
// { dg-do assemble }
// Origin: Mark Mitchell <mark@codesourcery.com>
int i;
struct S
{
~S ()
{
}
};
template <class T>
void f (T, S)
{
i = 0;
}
int main ()
{
i = 1;
f (3, S ());
return i;
}