* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / decltype23.C
blob731eed708e54e60a402099816d53ee1b7e1c51b2
1 // { dg-do compile { target c++11 } }
3 int x, &&y = static_cast<int &&>(x);
4 typedef decltype((y)) myInt;  // `y' is a parenthesized id-expression of type int that is an lvalue
5 typedef int &myInt;