Files
kotlin-fork/compiler/testData/codegen/regressions/kt2334.kt
T
2012-08-04 12:46:49 +03:00

13 lines
190 B
Kotlin

import kotlin.test.*
import org.junit.Test as test
public class Test {
test fun f(): Unit {
assertEquals(true, !false)
}
}
fun box() : String {
Test().f()
return "OK"
}