Files
kotlin/idea/testData/quickfix/createFromUsage/createClass/callExpression/callWithThisReceiverInClass.kt.after

9 lines
139 B
Plaintext
Vendored

// "Create class 'Foo'" "true"
class A<T>(val n: T) {
fun test() = this.Foo(2, "2")
inner class Foo(i: Int, s: String) {
}
}