blob: c43c67edf70058112d20f82fe74aafc292a741fd [file] [log] [blame]
// PR c++/83476
int n;
template <int& V> struct A {};
template <int& V> void f(A<V>);
int main() {
A<n> a;
f(a);
}