0b647ac358
Split testData into 'classes' and 'expressions'.
3 lines
134 B
Kotlin
Vendored
3 lines
134 B
Kotlin
Vendored
fun test1(a: String, b: Any) = a + b
|
|
fun test2(a: String, b: Int) = a + "+" + b
|
|
fun test3(a: String, b: Int) = (a + "+") + (b + 1) + a |