* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr65954.C
blob851660b90a75e8847a86d15d929cd9b7d734a8f8
1 // { dg-do compile { target c++11 } }
3 struct Shape {
4   enum class Type
5   { Circle, Square };
6 };
9 void Foo (Shape &shape)
11   +shape.Type::NOPE; // { dg-error "is not a member of" }