mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
11 lines
150 B
Java
Vendored
11 lines
150 B
Java
Vendored
package test;
|
|
|
|
public abstract class InnerWithGenericOuter<T> {
|
|
|
|
public class Module {
|
|
}
|
|
|
|
protected abstract void test(Module module);
|
|
|
|
}
|