blob: 25192ad8672cc4cefbbf3d31b79a6b98ce25e37a [file] [log] [blame]
// PR c++/37766
// { dg-options -std=c++0x }
int a = 1;
template<int& b = a> void f() {
f<>();
}