-
Bug
-
Resolution: Fixed
-
P3
-
9-repo-jigsaw
Javac doesn't report errors if type is abstract, or does not have a public no-args constructor, or is an inner class.
Example:
module m { provides p1.Service with p2.Impl; }
package p1; public interface Service { }
package p2; public interface Impl extends p1.Service { }
Example:
module m { provides p1.Service with p2.Impl; }
package p1; public interface Service { }
package p2; public interface Impl extends p1.Service { }
- relates to
-
JDK-8145839 javac report error if service doesn't have a no-args constructor
-
- Resolved
-
-
JDK-8145839 javac report error if service doesn't have a no-args constructor
-
- Resolved
-
- links to