Fix for KT-5589: VerifyError when default value for parameter of local function is obtained from closure
#KT-5589 Fixed
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
fun box(): String {
|
||||
val x = "OK"
|
||||
fun bar(y: String = x): String = y
|
||||
return bar()
|
||||
}
|
||||
Reference in New Issue
Block a user