0b647ac358
Split testData into 'classes' and 'expressions'.
6 lines
176 B
Kotlin
Vendored
6 lines
176 B
Kotlin
Vendored
fun test1(a: Boolean, b: Boolean) = a && b
|
|
fun test2(a: Boolean, b: Boolean) = a || b
|
|
|
|
fun test1x(a: Boolean, b: Boolean) = a and b
|
|
fun test2x(a: Boolean, b: Boolean) = a or b
|