0b647ac358
Split testData into 'classes' and 'expressions'.
8 lines
130 B
Kotlin
Vendored
8 lines
130 B
Kotlin
Vendored
fun test1(x: Int) = -x
|
|
fun test2() = -42
|
|
|
|
fun test3(x: Int) = +x
|
|
fun test4() = +42
|
|
|
|
fun test5(x: Boolean) = !x
|
|
fun test6() = !true |