Fix for KT-15575: VerifyError: Bad type on operand stack
#KT-15575 Fixed
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
fun box(): String {
|
||||
val transform = transform(Array(1) { BooleanArray(1) })
|
||||
if (!transform[0][0]) return "OK"
|
||||
return "fail"
|
||||
}
|
||||
|
||||
fun transform(screen: Array<BooleanArray>) = Array(1) { x ->
|
||||
screen[x]
|
||||
}
|
||||
Reference in New Issue
Block a user