// PR c++/49105 // { dg-do compile { target c++11 } } template char f(int); template auto f(...) -> char(&)[2]; static_assert(sizeof(f(0)) == 1, "Error"); // #