aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/mutable1.C
blob: 9298d2ef882a85e97cd3ed0d92b41016eeb699e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
struct X
{
  X () { }
  mutable int x;
};

main ()
{
  const X x;
  x.x = 0;
}