blob: 9298d2ef882a85e97cd3ed0d92b41016eeb699e5 [file] [log] [blame]
struct X
{
X () { }
mutable int x;
};
main ()
{
const X x;
x.x = 0;
}