Sorry, again no example. I get this with dmd 1.005 and dmd 1.007. I did not test other versions.
Comment #1 by benoit — 2007-02-24T08:14:50Z
Additional info:
it prints "linkage = 0"
Comment #2 by benoit — 2007-02-25T05:53:12Z
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;
}
}