* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / ref-qual15.C
blobca333c2e2874e820f4574f3e490848cff0f79c60
1 // PR c++/59296
2 // { dg-do compile { target c++11 } }
4 struct Type
6   void get() const& { }
7   void get() const&& { }
8 };
10 int main()
12   Type{}.get();