Files
kotlin-fork/compiler/testData/diagnostics/tests/functionLiterals/kt16016.fir.kt
T
2020-02-04 15:00:12 +03:00

6 lines
173 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER -UNUSED_VARIABLE
val la = { a -> }
val las = { a: Int -> }
val larg = { a -> }(123)
val twoarg = { a, b: String, c -> }(123, "asdf", 123)