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

13 lines
170 B
Kotlin

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