Files
kotlin-fork/idea/testData/refactoring/introduceParameter/classParameterUsedOutside.kt
T

8 lines
136 B
Kotlin
Vendored

// TARGET:
class A(val a: Int, s: String) {
fun foo() = (<selection>a + 1</selection>) * 2
}
fun test() {
val t = A(1, "2").a
}