xxxxxxxxxx
import std.stdio;
void main()
{
class A
private int _value = 12;
int value() const
return _value;
}
const a = new A();
writeln(a.value);