10 lines
112 B
Plaintext
Vendored
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 {
|
|
|
|
}
|