Files
kotlin-fork/idea/testData/refactoring/introduceProperty/extractFromDefaultValueInFun.kt.after
T
2015-03-06 14:37:21 +03:00

8 lines
119 B
Plaintext
Vendored

// EXTRACTION_TARGET: property with initializer
class A {
private val i = 1 + 2
fun foo(a: Int = i) {
}
}