Comment #0 by andrej.mitrovich — 2013-01-13T11:03:22Z
void main()
{
with (1)
{
}
}
$ dmd test.d
> Error: with expressions must be class objects, not 'int'
Should be:
Error: with expressions must be class or struct objects, not 'int'
Comment #1 by andrej.mitrovich — 2013-01-13T11:06:08Z