mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
12 lines
200 B
Kotlin
Vendored
12 lines
200 B
Kotlin
Vendored
// ERROR: Cannot perform refactoring.\nCannot find a single definition to inline
|
|
|
|
fun f() {
|
|
val v: Int
|
|
if (true) {
|
|
v = 239
|
|
}
|
|
else {
|
|
v = 30
|
|
}
|
|
println(<caret>v)
|
|
} |