// Origin: dgregor@gcc.gnu.org // PR c++/11384 // foo::_S_something was not being emitted (as a weak definition). // { dg-do run } // { dg-require-weak "" } template struct foo { static const T _S_something; }; template const T foo::_S_something = T(); int main() { const int* p = &foo::_S_something; return 0; }