// PR c++/48737 // { dg-do compile { target c++11 } } template T&& create(); template decltype(T{create()...}, char()) f(int); template char (&f(...))[2]; static_assert(sizeof(f(0)) != 1, "Error");