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

8 lines
129 B
Plaintext

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