(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
mutable1.C
// PR c++/77375
// { dg-do run { target c++11 } }

struct Base { mutable int i; };
struct Derived : Base {};
const Derived foo{};

int
main ()
{
  foo.i = 42;
}