Files
kotlin-fork/compiler/testData/diagnostics/tests/inline/constructor.fir.kt
T

7 lines
84 B
Kotlin
Vendored

class Z(s: (Int) -> Int) {
}
public inline fun test(s : (Int) -> Int) {
Z(s)
}