mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
12 lines
208 B
Java
12 lines
208 B
Java
package test;
|
|
|
|
public interface OverrideWithErasedParameter {
|
|
|
|
public interface Super<T> {
|
|
void foo(T t);
|
|
}
|
|
|
|
public interface Sub<T> extends Super<T> {
|
|
void foo(Object o);
|
|
}
|
|
} |