Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createClass/callExpression/afterCallWithObjectQualifier.kt
T
2014-11-11 14:42:45 +03:00

13 lines
114 B
Kotlin

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