blob: f6395e2c35f1c2d9b2792cc4d255517a3d5debe1 [file] [log] [blame]
// PR c++/60167
template <int& F>
struct Foo {
typedef int Bar;
static Bar cache;
};
template <int& F> typename Foo<F>::Bar Foo<F>::cache;