immutable class Foo
{
void bar()
{
}
}
void main()
{
auto x = new Foo();
x.bar();
// Error: function test.Foo.bar () immutable is not callable
// using argument types ()
}
x.bar()
コンパイルするには、プログラムで何を変更する必要がありますか? x
タイプが間違っていませんか?