Fixing signature when overriding with erased signature.

EA-43482 - ISE: JavaFunctionResolver.checkFunctionsOverrideCorrectly
This commit is contained in:
Evgeny Gerashchenko
2013-02-15 19:13:05 +04:00
parent cd06bdedfe
commit 48113f036f
6 changed files with 79 additions and 0 deletions
@@ -0,0 +1,12 @@
package test;
public interface OverrideWithErasedParameter {
public interface Super<T> {
void foo(T t);
}
public interface Sub<T> extends Super<T> {
void foo(Object o);
}
}