Walter Bright wrote:
> Mostly bug fixes.
>
> http://www.digitalmars.com/d/changelog.html
Nice work, Walter. Thank you.
I hoped the following code will not compile with .161
#struct A
#{
# int x;
#}
#
#void main()
#{
# A a;
# with(a) {
# int x; // compiles without error
# }
#}
Vladimir