mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
6 lines
86 B
Kotlin
6 lines
86 B
Kotlin
class A<T>(val t: T) {
|
|
fun foo(): T = t
|
|
}
|
|
|
|
fun box() = A("OK").(A<String>::foo)()
|