Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/functions.kt
T

6 lines
143 B
Kotlin
Vendored

class FunctionsTest {
fun f() = String::length
fun f2() = fun (a: Int, b: Int) = a > b
fun f3() = run {}
fun f4() = run { 3 }
}