Files
kotlin/idea/testData/quickfix/createFromUsage/createClass/callExpression/afterCallWithObjectQualifier.kt

12 lines
113 B
Kotlin

// "Create class 'Foo'" "true"
object A {
class Foo(i: Int) {
}
}
fun test() {
val a = A.Foo(2)
}