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

9 lines
144 B
Kotlin

// "Create class 'Foo'" "true"
class A(n: Int)
fun test() = Foo(abc = 1, ghi = A(2), def = "s")
class Foo(abc: Int, ghi: A, def: String) {
}