Description
This issue was originally filed by ief...@unipro.ru
What steps will reproduce the problem?
consider the following test:
interface I {
void m1();
}
interface J extends I {
void m1(int i);
}
main() {
J j = null;
try {j.m1(null);} catch (var e) {}
}
What is the expected output? What do you see instead?
Expected: compile-time error
Actual: successful completion
What version of the product are you using? On what operating system?
DartVM r2810
Please provide any additional information below.
co19 tests:
LangSpecTest/08_Interfaces/1/Methods/A03/t01
LangSpecTest/08_Interfaces/1/Methods/A03/t02
LangSpecTest/08_Interfaces/1/Methods/A03/t03
LangSpecTest/08_Interfaces/1/Methods/A03/t04
LangSpecTest/08_Interfaces/1/Methods/A04/t01
LangSpecTest/08_Interfaces/1/Methods/A04/t02
LangSpecTest/08_Interfaces/1/Methods/A04/t03
LangSpecTest/08_Interfaces/1/Methods/A04/t04
LangSpecTest/08_Interfaces/1/Methods/A04/t05