6fe52d15b4
Added few tests to Introduce Variable More strict requirements for expressions to introduce it.
9 lines
126 B
Kotlin
9 lines
126 B
Kotlin
fun a() {
|
|
for (a in <selection>1..2</selection>) {}
|
|
}
|
|
/*
|
|
fun a() {
|
|
val intRange = 1..2
|
|
for (a in intRange) {}
|
|
}
|
|
*/ |