Adapt CompileKotlinAgainstKotlin test to black box format

Rename/remove some obsolete test cases
This commit is contained in:
Alexander Udalov
2016-02-29 13:36:16 +03:00
parent 0b26e749f6
commit 9f67fe2fe3
34 changed files with 152 additions and 183 deletions
@@ -4,15 +4,12 @@ package aaa
class A {
class O {
val s = "OK"
val s = "OK"
}
}
// FILE: B.kt
fun main(args: Array<String>) {
val str = aaa.A.O().s
if (str != "OK") {
throw Exception()
}
fun box(): String {
return aaa.A.O().s
}