Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/beforeThisInNestedClass1.kt

9 lines
180 B
Kotlin

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