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/results/module-info.dec

13 lines
251 B

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