erg/tests/should_err/inherit.er
2024-10-01 17:32:06 +09:00

9 lines
134 B
Python

@Inheritable
Base = Class {
.value = Str;
}
C = Inherit Base, Additional := {
.value = Int # ERR
}
_ = C.new { .value = 10 }