085fc3bf87
This became necessary when we removed the requirement to specify types for public members, because otherwise everything fails not being able to locate the anonymous class from another module #KT-9072 Fixed EA-72801
10 lines
156 B
Kotlin
Vendored
10 lines
156 B
Kotlin
Vendored
package pkg
|
|
|
|
interface ClassA {
|
|
companion object {
|
|
val DEFAULT = object : ClassA {
|
|
override fun toString() = "OK"
|
|
}
|
|
}
|
|
}
|