Files
kotlin-fork/idea/testData/refactoring/introduceVariable/ManyInnerOccurences.kt
T
2014-04-17 19:01:17 +04:00

11 lines
157 B
Kotlin

fun a() {
if (true) {
if (true) {
1
}
} else {
if (true) {
<selection>1</selection>
}
}
}