1 // PR c++/37766
2 // { dg-options -std=c++0x }
3 
4 int a = 1;
f()5 template<int& b = a> void f() {
6   f<>();
7 }
8