Files
kotlin-fork/idea/testData/refactoring/introduceParameter/classParameterInFunctionBody.kt
T
2015-04-09 13:49:20 +03:00

8 lines
100 B
Kotlin
Vendored

// TARGET:
class A(a: Int) {
fun foo() = <selection>1 + 2</selection>
}
fun test() {
A(1)
}