blob: 282f78fe8f828b545a6a541d537b39be20c71cdd [file] [log] [blame]
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T>
struct S {
S() {}
static S s;
};
template <class T>
S<T> S<T>::s;
S<int> si;