Files
kotlin-fork/idea/resources/intentionDescriptions/ConvertObjectLiteralToClassIntention/before.kt.template
T
2017-01-10 21:16:12 +03:00

7 lines
101 B
Plaintext

open class K
fun foo(n: Int) {
val x = <spot>object</spot> : K() {
fun bar() = n
}
}