Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/regressions/kt2334.kt
T
2013-02-11 02:01:40 +04:00

14 lines
191 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"
}