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

13 lines
288 B
Plaintext
Vendored

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