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