a5e4e0284e
This patch mutes the following test categories:
* Tests with java dependencies (System class,
java stdlib, jvm-oriented annotations etc).
* Coroutines tests.
* Reflection tests.
* Tests with an inheritance from the standard
collections.
25 lines
340 B
Kotlin
Vendored
25 lines
340 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// WITH_RUNTIME
|
|
// FILE: foo.kt
|
|
@file:JvmName("Util")
|
|
@file:JvmMultifileClass
|
|
package test
|
|
|
|
private const val x = "O"
|
|
|
|
fun foo() = x
|
|
|
|
// FILE: bar.kt
|
|
@file:JvmName("Util")
|
|
@file:JvmMultifileClass
|
|
package test
|
|
|
|
private const val x = "K"
|
|
|
|
fun bar() = x
|
|
|
|
// FILE: test.kt
|
|
package test
|
|
|
|
fun box(): String = foo() + bar()
|