blob: fcc1d0009dc78a5742e592cf1a292119759bc7b9 [file] [log] [blame]
// Build don't link:
// Special g++ Options: -O
// Origin: Mark Mitchell <mitchell@codesourcery.com>
template <class T>
struct S {
inline ~S () {}
};
template <class T>
void f ()
{
static S<T> s;
}
template void f<int>();