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
9 lines
120 B
Kotlin
Vendored
9 lines
120 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
fun test() {
|
|
var (x, y) = Pair(1, 2)
|
|
<expr>x = 1</expr>
|
|
consume(x)
|
|
}
|
|
|
|
fun consume(n: Int) {} |