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