6fe52d15b4
Added few tests to Introduce Variable More strict requirements for expressions to introduce it.
9 lines
106 B
Kotlin
9 lines
106 B
Kotlin
fun a() {
|
|
while (<selection>true</selection>) {}
|
|
}
|
|
/*
|
|
fun a() {
|
|
val b = true
|
|
while (b) {}
|
|
}
|
|
*/ |