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
During parsing, disallow the use of "final" in local definitions.
e.g.
def foo = {
final def bar = 42 // error: final in local def is disallowed
final var x = 42 // error
final type X = Int // error
}
scalac
doesn't let you write:But Dotty does...
The text was updated successfully, but these errors were encountered: