Files
codeql/java/ql/test/kotlin/library-tests/java_and_kotlin/Kotlin.kt
Chris Smowton 9f722a7e12 Disable java_and_kotlin inconsistency test; accept changes
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.
2022-12-06 18:35:04 +00:00

16 lines
322 B
Kotlin

public class Kotlin {
fun kotlinFun() {
// TODO: Java().javaFun();
}
}
open class Base {
open fun fn0(x: Int) : String = ""
open suspend fun fn1(x: Int) : String = ""
}
class Dkotlin : Base() {
override fun fn0(x: Int): String = super.fn0(x)
override suspend fun fn1(x: Int): String = super.fn1(x)
}