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

7 lines
85 B
Kotlin
Vendored

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