We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
trait Foo { def meth(x: Int): Int }
Compiled with dotty, then decompiled with cfr:
public interface Foo { default public void $init$() { } public int meth(int var1); }
Compiled with Scala 2.12 then decompiled:
public interface Foo { public int meth(int var1); }