Fork of the Fernflower decompiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fernflower/testData/src/java9/sample.module/module-info.java

15 lines
230 B

module sample.module {
requires java.base;
uses java.util.spi.ToolProvider;
provides test.TestService with test.TestServiceImpl;
exports test;
exports test2 to java.base;
opens test;
opens test2 to java.base;
}