18 lines
288 B
Plaintext
Vendored
18 lines
288 B
Plaintext
Vendored
package <root> {
|
|
object A {
|
|
fun a()
|
|
}
|
|
class B constructor() {
|
|
companion object {
|
|
fun b()
|
|
}
|
|
object C {
|
|
fun c()
|
|
}
|
|
}
|
|
class D constructor() {
|
|
companion object E {
|
|
fun e()
|
|
}
|
|
}
|
|
} |