mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
Move test-related code to org.jetbrains.kotlin.test, also move some tests to packages with better names
12 lines
445 B
Java
Vendored
12 lines
445 B
Java
Vendored
package test;
|
|
|
|
import org.jetbrains.kotlin.jvm.compiler.annotation.ExpectLoadError;
|
|
|
|
public interface Sub extends Super1, Super2 {
|
|
@ExpectLoadError("Incompatible super methods: some are extension functions, some are not")
|
|
void foo(String p);
|
|
|
|
@ExpectLoadError("Incompatible super methods: some are extension functions, some are not|Incompatible super methods: some have vararg parameter, some have not")
|
|
void bar(String... p);
|
|
}
|