Hello devel-en,
ok, casts are working as casts (for outside) now
and i checked some things...
so, let's proceed with the next simple question
public class A {}
public class B : A
{
public static @:>(_ : A) : B
{
B()
}
}
def a = A();
def b : B = a :> B;
should it be allowed or not? how d'you think, guys?
(c# prohibits overloading upcasts in B)
regards, phantom