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