Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createClass/callExpression/afterCallWithSupertrait.kt
T

10 lines
108 B
Kotlin

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