Files
kotlin-fork/compiler/testData/codegen/junit/kt2344.kt
T
2015-09-18 10:14:32 +03:00

13 lines
171 B
Kotlin
Vendored

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