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.
34 lines
688 B
Kotlin
Vendored
34 lines
688 B
Kotlin
Vendored
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS, NATIVE
|
|
|
|
// FILE: Child.java
|
|
|
|
class Child extends Parent {
|
|
public static String a = "2";
|
|
public static String foo() {
|
|
return "Child.foo()";
|
|
}
|
|
public static String foo(int i) {
|
|
return "Child.foo(int)";
|
|
}
|
|
}
|
|
|
|
// FILE: Parent.java
|
|
|
|
class Parent {
|
|
private static int a = 1;
|
|
private static String foo() {
|
|
return "Parent.foo";
|
|
}
|
|
}
|
|
|
|
// FILE: test.kt
|
|
|
|
fun box(): String {
|
|
if (Child.a != "2") return "Fail #1"
|
|
if (Child.foo() != "Child.foo()") return "Fail #2"
|
|
if (Child.foo(1) != "Child.foo(int)") return "Fail #3"
|
|
|
|
return "OK"
|
|
}
|