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

12 lines
143 B
Plaintext
Vendored

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