digitalmars.D.bugs - double alias -> need 'this' to access member
- Thomas Kuehne (20/21) Jan 22 2005 # class Check{
# class Check{ # void sum(byte[] b){ # } # # void add(byte b){ # } # # alias sum write; # alias add write; # # void test(){ # byte[] buffer; # write(buffer); # } # }need 'this' to access member sumremoving "alias add write" resloves the error message test cases: http://dstress.kuehne.cn/run/alias_13.d http://dstress.kuehne.cn/run/alias_14.d Thomas
Jan 22 2005