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

10 lines
105 B
Plaintext
Vendored

// "Create class 'Foo'" "true"
package Foo
fun test() = Foo(2, "2")
class Foo(i: Int, s: String) {
}