Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/thisInExtension.kt.after
T
2019-11-13 08:37:25 +09:00

11 lines
212 B
Plaintext
Vendored

// "Create member function 'A.foo'" "true"
class A<T>(val n: T) {
fun foo(i: Int, s: String): A<Int> {
TODO("Not yet implemented")
}
}
fun <U> A<U>.test(): A<Int> {
return this.foo(2, "2")
}