You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calls to static interface methods compile on Java 8 but not on Java 9 because of a new bytecode restrictrion.
publicinterfaceJDK8InterfaceMethods {
// cannot call either of these from ClojurepublicstaticlongstaticMethod0(longv) { returnv; }
publicstaticStringstaticMethod1(Strings) { returns; }
}
Calls to static interface methods compile on Java 8 but not on Java 9 because of a new bytecode restrictrion.
https://dev.clojure.org/jira/browse/CLJ-2284
Interface default methods are unaffected.
The text was updated successfully, but these errors were encountered: