[Issue 1005] dmd: tocsym.c:343: virtual Symbol* FuncDeclaration::toSymbol(): Assertion `0' failed.

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sun Feb 25 03:53:20 PST 2007


http://d.puremagic.com/issues/show_bug.cgi?id=1005





------- Comment #2 from benoit at tionex.de  2007-02-25 05:53 -------
Here comes the sample:

class Base {
    public void fnc(){
    }
}
class Foo : Base {
    alias Base.fnc fnc;
    public void fnc(){
    }
    static this(){
        alias void function() T;
        T ptr = & fnc;
    }
}


-- 



More information about the Digitalmars-d-bugs mailing list