8e00af5642
* Add intention to convert top level val with object expression to object Fixes #KT-14137 * fix intention description
9 lines
85 B
Kotlin
Vendored
9 lines
85 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
|
|
package test
|
|
|
|
interface B {
|
|
}
|
|
|
|
val <caret>a = object : B {
|
|
} |