0fec50135f
This is the first implementation of a control flow graph facade for the extract function IDE refactoring. The exact contents of 'KtDataFlowExitPointSnapshot' will be refined later. ^KT-65762 Fixed
7 lines
103 B
Kotlin
Vendored
7 lines
103 B
Kotlin
Vendored
fun test() {
|
|
var x = intArrayOf(0)
|
|
<expr>++x[0]</expr>
|
|
consume(x)
|
|
}
|
|
|
|
fun consume(n: Int) {} |