6fe52d15b4
Added few tests to Introduce Variable More strict requirements for expressions to introduce it.
11 lines
118 B
Kotlin
11 lines
118 B
Kotlin
fun a(x: Int) {}
|
|
fun b() {
|
|
a(<selection>1</selection>)
|
|
}
|
|
/*
|
|
fun a(x: Int) {}
|
|
fun b() {
|
|
val i = 1
|
|
a(i)
|
|
}
|
|
*/ |