// { dg-options "-std=c++0x" } template void f(T); void f(...); struct X { typedef int value_type; }; void g() { f(X()); // okay f(17); // okay? }