7 lines
123 B
Kotlin
7 lines
123 B
Kotlin
// "Create function 'foo'" "true"
|
|
|
|
class A<T>(val n: T)
|
|
|
|
fun <U> A<U>.test(): A<Int> {
|
|
return this.<caret>foo(2, "2")
|
|
} |