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

8 lines
114 B
Kotlin
Vendored

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