7 lines
202 B
Kotlin
Vendored
7 lines
202 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) {
|
|
s == s //resolved call for right-hand side 's' not traced
|
|
}
|