Where to post bug report for Ubuntu GDC package

Steve Teale steve.teale at britseyeview.com
Mon Jan 18 22:54:58 PST 2010


The following produces a segfault with GDC - works OK with DMD on same machine. Where do I report it?

import std.stdio;

class Bar
{
    void bar(string s) {}
}

void foo(string s)
{
    Bar b = new Bar();
    writefln("%08x", cast(uint) b);
    void A(string as)
    {
        void B(string bs)
        {
            writefln("in B");
            writefln("%08x", cast(uint) b);
        }
        writefln("%08x", cast(uint) b);
        B(as);
    }
    writefln("%08x", cast(uint) b);
    A(s);
}

void main()
{
    foo("wobble");
}



More information about the D.gnu mailing list