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
Fixes#5755, #19704
Tested locally and the difference in behaviour was observed. I'm not
sure how to test it with the CI, if anybody has an idea, please let me
know. Also, this issue might be a problem sbt/sbt#7177
Tested as follow:
- Observe that the issue in `3.4.1-RC1`
```scala
scala-cli repl -S 3.4.1-RC1
Welcome to Scala 3.4.1-RC1 (17.0.7, Java Java HotSpot(TM) 64-Bit Server VM).
Type in expressions for evaluation. Or try :help.
scala> class 😃
// defined class 😃
scala> cclas
-- [E006] Not Found Error: -----------------------------------------------------
1 |clas
|^^^^
|Not found: clas - did you mean caps?
|
| longer explanation available when compiling with `-explain`
1 error found
scala>
```
- Publish dotty locally with the correct jline version
- Observe that the issue is fixed
```scala
scala-cli repl -S 3.4.2-RC1-bin-SNAPSHOT
Welcome to Scala 3.4.2-RC1-bin-SNAPSHOT-git-174d4c6 (17.0.7, Java Java HotSpot(TM) 64-Bit Server VM).
Type in expressions for evaluation. Or try :help.
scala> class 😃
// defined class 😃
scala> clas
-- [E006] Not Found Error: -----------------------------------------------------
1 |clas
|^^^^
|Not found: clas - did you mean caps?
|
| longer explanation available when compiling with `-explain`
1 error found
scala>
``
0 commit comments