how can i achieve this: ``` class Test { a { ...
# announcements
t
how can i achieve this:
Copy code
class Test {
    a {
        fun foo(){}
    }
    b {
        fun foo(){}
    }
}
callable from both kotlin and java as
Copy code
Test test = new Test();
test.a.foo();
test.b.foo();