supaham
08/13/2016, 2:23 PMinterface Test {
fun foo()
fun bar() { println("bar") }
}
becomes the equivalent of the following java code in bytecode
abstract class Test {
public abstract void foo()
public void bar() {
System.out.println("bar");
}
}