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

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