// PR c++/54913 struct E { static const int& e; }; template struct R { R() { E::e; } }; R r;