Files
kotlin/compiler/testData/compileKotlinAgainstJava/InnerWithGenericOuter.java
2017-08-29 18:01:36 +03:00

11 lines
150 B
Java
Vendored

package test;
public abstract class InnerWithGenericOuter<T> {
public class Module {
}
protected abstract void test(Module module);
}