Migrate CompileKotlinAgainstKotlin test to multi-file framework

This commit is contained in:
Alexander Udalov
2016-02-24 12:02:25 +03:00
committed by Alexander Udalov
parent 5884d4be79
commit cc8af573f9
69 changed files with 569 additions and 358 deletions
@@ -0,0 +1,18 @@
// FILE: A.kt
package aaa
class A {
object O {
val s = "OK"
}
}
// FILE: B.kt
fun main(args: Array<String>) {
val str = aaa.A.O.s
if (str != "OK") {
throw Exception()
}
}