You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
473 B
18 lines
473 B
package pkg;
|
|
|
|
class TestAmbiguousCall {
|
|
void m1(RuntimeException e, String s) {
|
|
}
|
|
|
|
void m1(IllegalArgumentException e, String s) {
|
|
}
|
|
|
|
void test() {
|
|
IllegalArgumentException iae = new IllegalArgumentException();
|
|
this.m1((RuntimeException)iae, "RE");
|
|
this.m1(iae, "IAE");
|
|
IllegalArgumentException re = new IllegalArgumentException();
|
|
this.m1((RuntimeException)re, "RE");
|
|
this.m1((IllegalArgumentException)re, "IAE");
|
|
}
|
|
}
|
|
|