(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
semicolon2.C
// PR c++/45332
// { dg-do compile }

class C
{
 int x				// { dg-error "at end of member declaration" }

 const int foo() { return x; }
};