// PR c++/51973 // { dg-do compile { target c++11 } } template void f(T t) { } template decltype(f(0)) g(); template decltype(f(0)) g(); int main() { g(); }