Add JVM target bytecode version 16

#KT-45515 Fixed
This commit is contained in:
Alexander Udalov
2021-03-16 18:56:04 +01:00
parent 09f9489619
commit 27174de891
5 changed files with 6 additions and 5 deletions
@@ -32,6 +32,7 @@ enum class JvmTarget(
JVM_13("13", Opcodes.V12 + 1),
JVM_14("14", Opcodes.V12 + 2),
JVM_15("15", Opcodes.V12 + 3),
JVM_16("16", Opcodes.V12 + 4),
;
companion object {