File tree 3 files changed +3
-2
lines changed
compiler/src/dotty/tools/backend/jvm
tests/pos-with-compiler-cc/dotc/config
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -185,5 +185,6 @@ object BackendUtils {
185
185
20 -> asm.Opcodes .V20 ,
186
186
21 -> asm.Opcodes .V21 ,
187
187
22 -> asm.Opcodes .V22 ,
188
+ 23 -> asm.Opcodes .V23
188
189
)
189
190
}
Original file line number Diff line number Diff line change @@ -625,7 +625,7 @@ object Build {
625
625
626
626
// get libraries onboard
627
627
libraryDependencies ++= Seq (
628
- " org.scala-lang.modules" % " scala-asm" % " 9.6 .0-scala-1" , // used by the backend
628
+ " org.scala-lang.modules" % " scala-asm" % " 9.7 .0-scala-1" , // used by the backend
629
629
Dependencies .compilerInterface,
630
630
" org.jline" % " jline-reader" % " 3.25.1" , // used by the REPL
631
631
" org.jline" % " jline-terminal" % " 3.25.1" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class ScalaSettings extends SettingGroup with AllScalaSettings
17
17
object ScalaSettings :
18
18
// Keep synchronized with `classfileVersion` in `BCodeIdiomatic`
19
19
private val minTargetVersion = 8
20
- private val maxTargetVersion = 22
20
+ private val maxTargetVersion = 23
21
21
22
22
def supportedTargetVersions : List [String ] =
23
23
(minTargetVersion to maxTargetVersion).toList.map(_.toString)
You can’t perform that action at this time.
0 commit comments