[dmd-beta] dmd 1.068 and 2.053 beta
Don Clugston
dclugston at googlemail.com
Thu May 12 17:14:57 PDT 2011
On 13 May 2011 00:12, Max Samukha <maxsamukha at gmail.com> wrote:
> Assigning function pointers is not type-checked:
>
> import std.stdio;
>
> alias void function(byte a) foo_t;
> void foo(int x) { writeln(x); }
> foo_t foo_p = &foo;
>
> void main(string[] args)
> {
> foo_p(42);
> }
>
> The code compiles and the program outputs -1075219670. Is it a known
> regression? Very severe bug, in my opinion.
Regression was introduced in 2.038. Shouldn't block this release.
More information about the dmd-beta
mailing list