Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createClass/callExpression/callWithReceiver.kt.after
T

12 lines
134 B
Plaintext
Vendored

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