mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-26 19:22:15 -05:00
020f5c404b
(loosely based on https://github.com/JetBrains/intellij-community/pull/217)
19 lines
494 B
Plaintext
19 lines
494 B
Plaintext
package pkg;
|
|
|
|
class TestAmbiguousCall {
|
|
void m1(RuntimeException var1, String var2) {
|
|
}
|
|
|
|
void m1(IllegalArgumentException var1, String var2) {
|
|
}
|
|
|
|
void test() {
|
|
IllegalArgumentException var1 = new IllegalArgumentException();
|
|
this.m1((RuntimeException)var1, "RE");
|
|
this.m1(var1, "IAE");
|
|
IllegalArgumentException var2 = new IllegalArgumentException();
|
|
this.m1((RuntimeException)var2, "RE");
|
|
this.m1((IllegalArgumentException)var2, "IAE");
|
|
}
|
|
}
|