As of Java 9, interface can include private methods with implementation. Example: ```java public interface Interface { private void init() {} } ``` Currently the driver returns an error: `syntax error: Abstract methods do not specify a body` More generally, we'll need a native parser update to support all new features from Java 9 to 11.
As of Java 9, interface can include private methods with implementation. Example:
Currently the driver returns an error:
syntax error: Abstract methods do not specify a bodyMore generally, we'll need a native parser update to support all new features from Java 9 to 11.