I found another big lib that was rendered unbuildable with the new release: DFL

i reduced it to this:

module main;

struct Size
{
        union
        {
                struct
                {
                        int width;
                        int height;
                }
                
                long size; // package
        }
}

enum Size foo = {2 ,5};
        
Size bar = foo;

dmd2.053 beta says: "main.d(17): Error: duplicate union initialization for size"


On 08.05.2011 02:10, Walter Bright wrote:


On 5/6/2011 9:47 PM, Walter Bright wrote:

http://ftp.digitalmars.com/dmd2beta.zip


New beta up with missing files added, updated changelog, and new
std.parallelism.
_______________________________________________
dmd-beta mailing list
[email protected]
http://lists.puremagic.com/mailman/listinfo/dmd-beta

_______________________________________________
dmd-beta mailing list
[email protected]
http://lists.puremagic.com/mailman/listinfo/dmd-beta

Reply via email to