Files
kotlin-fork/compiler/testData/diagnostics/tests/inline/constructor.kt
T
2023-10-26 11:29:26 +00:00

9 lines
131 B
Kotlin
Vendored

// FIR_IDENTICAL
class Z(s: (Int) -> Int) {
}
public inline fun test(s : (Int) -> Int) {
Z(<!USAGE_IS_NOT_INLINABLE!>s<!>)
}