Files
kotlin/idea/testData/refactoring/inline/function/fromIntellij/SideEffect.kt

13 lines
195 B
Kotlin
Vendored

class Test {
private var s: String? = null
fun <caret>method(): String {
s = "Hello"
return s
}
fun test() {
println(method())
println(s)
}
}