8e00af5642
* Add intention to convert top level val with object expression to object Fixes #KT-14137 * fix intention description
9 lines
93 B
Plaintext
9 lines
93 B
Plaintext
interface B {
|
|
fun c()
|
|
}
|
|
|
|
|
|
<spot>val a = object: B</spot> {
|
|
override fun c() {
|
|
}
|
|
} |