Files
kotlin-fork/compiler/testData/diagnostics/checkerTestUtil/test.jet
T

15 lines
186 B
Plaintext

fun foo(u : Unit) : Int = 1
fun test() : Int {
foo(1)
val a : fun() : Unit = {
foo(1)
}
return 1 - "1"
}
class A() {
val x : Int = foo1(xx)
}
fun foo1() {}