mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
This was testing that a signature inconsistency occurs, but this now manifests as a db inconsistency which can't be used as a test expectation because specific tuple numbers are liable to change with the environment.
23 lines
455 B
Java
23 lines
455 B
Java
import kotlin.coroutines.Continuation;
|
|
|
|
public class Java {
|
|
void javaFun() {
|
|
new Kotlin().kotlinFun();
|
|
}
|
|
|
|
public class Djava extends Base {
|
|
@Override
|
|
public String fn0(int x) {
|
|
return super.fn0(x);
|
|
}
|
|
|
|
/*
|
|
// Java interop disabled as it currently doesn't work (no symbol fn1(int, Completion<...>) gets created)
|
|
@Override
|
|
public Object fn1(int x, Continuation<? super String> $completion) {
|
|
return super.fn1(x, $completion);
|
|
}
|
|
*/
|
|
}
|
|
}
|