mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Move test-related code to org.jetbrains.kotlin.test, also move some tests to packages with better names
15 lines
371 B
Java
Vendored
15 lines
371 B
Java
Vendored
package test;
|
|
|
|
import java.lang.Number;
|
|
import java.util.*;
|
|
|
|
import jet.runtime.typeinfo.KotlinSignature;
|
|
import org.jetbrains.kotlin.jvm.compiler.annotation.ExpectLoadError;
|
|
|
|
public class RedundantProjectionKind {
|
|
@KotlinSignature("fun foo(list: List<out Number>)")
|
|
public void foo(List<Number> list) {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|