Files
kotlin-fork/compiler/testData/ir/irText/expressions/coercionToUnit.kt
T
2016-10-18 09:09:30 +03:00

12 lines
185 B
Kotlin
Vendored

// +JDK
val test1: () -> Unit = { 42 }
fun test2(mc: MutableCollection<String>) {
mc.add("")
}
fun test3() {
System.out?.println("Hello,")
System.out?.println("world!")
}