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

10 lines
145 B
Plaintext
Vendored

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