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

6 lines
119 B
Kotlin
Vendored

// EXTRACTION_TARGET: property with initializer
class A {
fun foo(a: Int = <selection>1 + 2</selection>) {
}
}