In fact you can try this ``` with(A()) { ...
# announcements
c
In fact you can try this
Copy code
with(A()) {
            object : A.B() {
            }
        }
or even
Copy code
fun A.doIt() {
        object : A.B() {
            
        }
    }