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 compile
sed -i 's/NAME/NAME2/g' src/main/scala/A.scala
sbt compile
Output
The second compilation fails (step (3)):
-- [E043] TypeError:/home/runner/work/sbt-incremental-compilation-bug/sbt-incremental-compilation-bug/src/main/scala/A.scala:3:133|typeNAME2=C[?]
|^^^^| unreducible application of higher-kinded typep.C to wildcard arguments
|| longer explanation available when compiling with`-explain`
Expectation
Step (3) should succeed.
The text was updated successfully, but these errors were encountered:
TreeUnpickler assumed that a type was an abstract type if its RHS was a TypeBounds tree.
But TypeBounds trees also encode alias types, so this needs to be refined.
Fixesscala#14858
TreeUnpickler assumed that a type was an abstract type if its RHS was a TypeBounds tree.
But TypeBounds trees also encode alias types, so this needs to be refined.
Fixesscala#14858
TreeUnpickler assumed that a type was an abstract type if its RHS was a TypeBounds tree.
But TypeBounds trees also encode alias types, so this needs to be refined.
Fixesscala#14858
Uh oh!
There was an error while loading. Please reload this page.
Compiler version
3.2.0-RC1-bin-20220308-29073f1-NIGHTLY
Minimized code
Minimized repository & Actions output
Namely, two files:
Then we perform the following steps:
A.scala
, renameNAME
to something else(above steps as shell commands)
Output
The second compilation fails (step (3)):
Expectation
Step (3) should succeed.
The text was updated successfully, but these errors were encountered: