Files
kotlin/compiler/testData/diagnostics/tests/inline/constructor.kt
2015-09-08 02:04:32 +03:00

7 lines
136 B
Kotlin
Vendored

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