Add overloading tests for interface feature

This commit is contained in:
William S Fulton 2016-02-12 20:22:37 +00:00
commit d0fb0ae801
2 changed files with 12 additions and 1 deletions

View file

@ -57,5 +57,12 @@ public class multiple_inheritance_interfaces_runme {
checkBaseAndInterfaces(K.class, false, "", new String[] {"IJ", "IK"});
checkBaseAndInterfaces(L.class, false, "", new String[] {"IJ", "IK", "IL"});
checkBaseAndInterfaces(M.class, false, "", new String[] {"IJ", "IK", "IL"});
// overloaded methods check
D d = new D();
d.ia();
d.ia(10);
d.ia("bye");
d.ia("bye", false);
}
}