1 // PR c++/54913
2 
3 struct E
4 {
5   static const int& e;
6 };
7 
8 template<typename>
9 struct R
10 {
RR11   R() { E::e; }
12 };
13 
14 R<int> r;
15