7 lines
115 B
Kotlin
Vendored
7 lines
115 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
class A<T>(val t: T) {
|
|
fun foo(): T = t
|
|
}
|
|
|
|
fun box() = (A<String>::foo)(A("OK"))
|