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

6 lines
123 B
Kotlin
Vendored

// "Create class 'Foo'" "true"
// ERROR: Unresolved reference: Foo
open class A(val n: Int)
fun test(): A = J.Foo(2, "2")