1 2 3 4 5 6 7 8 9
@Inheritable Base = Class { .value = Str; } C = Inherit Base, Additional := { .value = Int # ERR } _ = C.new { .value = 10 }