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.
47 lines
905 B
Kotlin
Vendored
47 lines
905 B
Kotlin
Vendored
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS, NATIVE
|
|
|
|
// WITH_RUNTIME
|
|
// FILE: Test.java
|
|
|
|
class Test {
|
|
public static String foo() {
|
|
return A.foo;
|
|
}
|
|
|
|
public static String constBar() {
|
|
return A.constBar;
|
|
}
|
|
|
|
public static String getBar() {
|
|
return A.getBar();
|
|
}
|
|
|
|
public static String baz() {
|
|
return A.baz();
|
|
}
|
|
}
|
|
|
|
// FILE: enumCompanionObject.kt
|
|
|
|
enum class A {
|
|
;
|
|
companion object {
|
|
@JvmField val foo: String = "OK"
|
|
|
|
const val constBar: String = "OK"
|
|
|
|
@JvmStatic val bar: String = "OK"
|
|
|
|
@JvmStatic fun baz() = foo
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
if (Test.foo() != "OK") return "Fail foo"
|
|
if (Test.constBar() != "OK") return "Fail bar"
|
|
if (Test.getBar() != "OK") return "Fail getBar"
|
|
if (Test.baz() != "OK") return "Fail baz"
|
|
return "OK"
|
|
}
|