Migrate CompileKotlinAgainstKotlin test to multi-file framework
This commit is contained in:
committed by
Alexander Udalov
parent
5884d4be79
commit
cc8af573f9
@@ -0,0 +1,20 @@
|
||||
// FILE: A.kt
|
||||
|
||||
package pkg
|
||||
|
||||
interface ClassA {
|
||||
companion object {
|
||||
val DEFAULT = object : ClassA {
|
||||
override fun toString() = "OK"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// FILE: B.kt
|
||||
|
||||
import pkg.ClassA
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
val obj = ClassA.DEFAULT
|
||||
obj.toString()
|
||||
}
|
||||
Reference in New Issue
Block a user