// PR c++/58156 // { dg-do compile { target c++11 } } template void Foo(U&...) {} template void Foo(const U&...) {} void Bar() { const int a = 0; Foo(a); }