2 // { dg-do compile { target c++11 } }
9 // In a function template, auto type deduction works incorrectly.
10 template <typename = void>
14 auto&& x = identity(i); // Type of x should be `int&`, but it is `int&&`.
17 int main (int argc, char* argv[])