1// { dg-do run  }
2struct X
3{
4  X () { }
5  mutable int x;
6};
7
8int main ()
9{
10  const X x;
11  x.x = 0;
12}
13