You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
allow fun and val members to be declared virtual; a signature without an implementation is considered virtual automatically
check that overridden funs and vals are virtual
forbid uses of this in constructors, including a class' initialization statements in the body and val RHSs
make an exception to the above for each final (ie non-virtual) member which either is a valor is a lazy val or a fun that doesn't itself transitively use this
The text was updated successfully, but these errors were encountered:
fun
andval
members to be declaredvirtual
; a signature without an implementation is considered virtual automaticallyfun
s andval
s are virtualthis
in constructors, including a class' initialization statements in the body andval
RHSsval
or is alazy val
or afun
that doesn't itself transitively use thisThe text was updated successfully, but these errors were encountered: