implicit conversion & associative array.
Robert Fraser
fraserofthenight at gmail.com
Fri Feb 8 05:13:43 PST 2008
funog wrote:
> "Mutable and invariant types can be implicitly converted to const."
>
> int[int] array;
> const(int[int]) a = array;
>
> outputs:
> cannot implicitly convert expression (array) of type int[int] to const(int[int])
>
> int[int] array;
> const(int[int]) a = cast(const)array;
>
> Compiles OK. ( DMD2.010 )
>
> Where is my implicit conversion? ^^
It's in your bug report.
More information about the Digitalmars-d
mailing list