// PR c++/48707 struct A { static int a(); }; template struct B: A { static int const b; }; template int const B::b=B::a();