13 lines
170 B
Kotlin
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()
|
|
}
|