2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / mutable1.C
blobb6c146ad660980cc3d0575e24271aad24265895d
1 // { dg-do run  }
2 struct X
4   X () { }
5   mutable int x;
6 };
8 int main ()
10   const X x;
11   x.x = 0;