Files
kotlin-fork/idea/resources/intentionDescriptions/ValToObjectIntention/before.kt.template
T
Kirill Rakhman 8e00af5642 Add intention to convert top level val with object expression to object declaration (#974)
* Add intention to convert top level val with object expression to object
Fixes #KT-14137

* fix intention description
2017-05-08 16:35:03 +03:00

9 lines
93 B
Plaintext

interface B {
fun c()
}
<spot>val a = object: B</spot> {
override fun c() {
}
}