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
7 lines
101 B
Kotlin
Vendored
7 lines
101 B
Kotlin
Vendored
import pkg.ClassA
|
|
|
|
fun main(args: Array<String>) {
|
|
val obj = ClassA.DEFAULT
|
|
obj.toString()
|
|
}
|