Java 9+ allows concrete private interface methods, but the scalac parser doesn't accept them ``` $> scalac B.java B.java:2: error: `;` expected but `{` found. private void foo() { return; } ^ 1 error ```