On Tuesday, 28 May 2013 at 09:02:32 UTC, Jacob Carlborg wrote:
On 2013-05-28 04:28, Lionello Lunesu wrote:I think this works just fine, you just have to drop the writeln(). foo()doesn't return anything, but prints itself.But yet, super should just work: it should be a variable of type C andtreated as such.What about "this".
`this` works with UFCS, but poses another problem:
class C{
void foo(){
writeln(this.toString());//UFCS
writeln(toString());//Won't work with UFCS
}
}
