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
sbt:tmp> run
[info] compiling 1 Scala source to /workspaces/tmp/target/scala-3.4.0-RC1-bin-20231006-b1ccc6a-NIGHTLY/classes ...
[error] -- [E052] Type Error: /workspaces/tmp/main.scala:7:8 --------
[error] 6 | a.f = "aa"
[error] | ^^^^^^^^^^
[error] | Reassignment to val f
If I remove def f_=(x: String) = b.x = x from B extension, it runs successfully with run in sbt console.
When I then add it back, it runs successfully with run in sbt console, but fails again on run after clean, which is potentially a partial compilation bug.