// PR c++/48707 // { dg-options -std=c++0x } struct A { static int a(); }; template struct B: A { static int const b; }; template int const B::b=B::a();