// PR c++/48292 // { dg-options -std=c++0x } template int g(Args...); template struct A { template static auto f(Args... args) -> decltype(g(args...)); }; int main() { A<>::f(); return 0; }