1 // PR c++/37766
2 // { dg-do compile { target c++11 } }
3 
4 int a = 1;
f()5 template<int& b = a> void f() {
6   f<>();
7 }
8