Greeting.
I tried to compile this code with DMD 2.053:
@property bool isZero(float value)
{
return value < float.epsilon;
}
void main()
{
0.1f.isZero;
readln();
}
But the compiler said,
no property 'isZero' for type 'float'.
I cannot understand this error.