So this ``` interface Test { fun foo() fun...
# announcements
s
So this
Copy code
interface Test {
    fun foo()
    fun bar() { println("bar") }
}
becomes the equivalent of the following java code in bytecode
Copy code
abstract class Test {
    public abstract void foo()
    public void bar() {
        System.out.println("bar");
    }
}