54c7466074
This is needed because after changing default language version to 2.0, we still need to test many scenarios from this test in K1. Move K1-specific tests to OldCompileKotlinAgainstCustomBinariesTest, and K2-specific tests to FirCompileKotlinAgainstCustomBinariesTest. Mute failing K2 tests via `muteForK2`. It will throw exception if the muted test will suddenly start passing.
7 lines
173 B
Java
Vendored
7 lines
173 B
Java
Vendored
package test;
|
|
import java.util.List;
|
|
public class B extends A {
|
|
public <T> T foo(List<T> t) { return null; }
|
|
public boolean foo(List<Boolean> t) { return false; }
|
|
}
|