12 lines
113 B
Plaintext
Vendored
12 lines
113 B
Plaintext
Vendored
// "Create class 'Foo'" "true"
|
|
|
|
object A {
|
|
class Foo(i: Int) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fun test() {
|
|
val a = A.Foo(2)
|
|
} |