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