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

13 lines
276 B
Plaintext
Vendored

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