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