[Test] Move KotlinAgainstKotlin tests under BlackBoxCodegen tests
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
// TARGET_BACKEND: JVM
|
||||
// MODULE: lib
|
||||
// FILE: A.kt
|
||||
@file:JvmName("TTest")
|
||||
@file:JvmMultifileClass
|
||||
package test
|
||||
|
||||
var property = "fail"
|
||||
private set
|
||||
|
||||
fun test() {
|
||||
property = "OK"
|
||||
}
|
||||
|
||||
// MODULE: main(lib)
|
||||
// FILE: B.kt
|
||||
|
||||
import test.*
|
||||
|
||||
fun box(): String {
|
||||
test()
|
||||
return property
|
||||
}
|
||||
Reference in New Issue
Block a user