Files
kotlin-fork/idea/testData/refactoring/introduceVariable/DelegatorToSuperCallInArgument.kt
T
2015-09-03 22:06:15 +03:00

5 lines
87 B
Kotlin
Vendored

open class A(n: Int)
fun foo() {
val x = object : A(<selection>1</selection>) {}
}