Files
kotlin-fork/idea/testData/checkerTestUtil/test.jet
T
Andrey Breslav e5304aba66 Copy Current File As Diagnostic Test action added
Testing framework with error type support added
2011-09-15 22:12:13 +04:00

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() {}