Files
kotlin-fork/compiler/testData/diagnostics/tests/inline/regressions/kt4341.kt
T
2014-02-11 21:07:08 +04:00

7 lines
260 B
Kotlin
Vendored

//KT-4341 No resolved call for right-hand side of equals expression
package g
inline fun <T, U, V> inlineFunWithInvoke(s: (p: T) -> U) {
<!USAGE_IS_NOT_INLINABLE!>s<!> == <!USAGE_IS_NOT_INLINABLE!>s<!> //resolved call for right-hand side 's' not traced
}