Pseudocode: Bind nondeterministic jump caused by local declaration to declaration iself instead of its parent element
#KT-6261 Fixed #KT-6416 Fixed
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
fun test(): Int {
|
||||
return i()
|
||||
}
|
||||
|
||||
private fun i(): Int {
|
||||
val foo = 1
|
||||
fun bar() = 2
|
||||
|
||||
return when (foo) {
|
||||
1 -> 1
|
||||
else -> 2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user