Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createClass/callExpression/callWithSupertrait.kt.after
T
2015-05-13 16:13:13 +02:00

10 lines
112 B
Plaintext
Vendored

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