Files
kotlin-fork/compiler/testData/ir/irText/expressions/callableReferences/genericMember.kt
T

8 lines
120 B
Kotlin
Vendored

// FIR_IDENTICAL
class A<T> {
fun foo() {}
val bar = 42
}
val test1 = A<String>::foo
val test2 = A<String>::bar