Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / parse / enum13.C
blob102f21953ac7f9ce4639ce0c8828604be61f6e10
1 // PR c++/66781
3 class foo
5 public:
6   enum foo::bar{};  // { dg-error "does not name an enumeration" }
7   foo::bar baz;
8 };