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

7 lines
103 B
Kotlin
Vendored

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