1// PR c++/60167
2
3template <int& F>
4struct Foo {
5  typedef int Bar;
6
7  static Bar cache;
8};
9
10template <int& F> typename Foo<F>::Bar Foo<F>::cache;
11