10 lines
147 B
Kotlin
10 lines
147 B
Kotlin
package codegen.function.boolean
|
|
|
|
import kotlin.test.*
|
|
|
|
fun bool_yes(): Boolean = true
|
|
|
|
@Test fun runTest() {
|
|
if (!bool_yes()) throw Error()
|
|
}
|