IDEA-93295 Make: removing reference to supertype from subtype does not make client code re-compiled

This commit is contained in:
Eugene Zhuravlev
2012-11-01 19:16:14 +01:00
parent c77150b37d
commit f87d2034ed
15 changed files with 91 additions and 0 deletions
@@ -0,0 +1,5 @@
public class FarClient {
public void context() {
FarGoal goal2 = new SwitchProvider().method();
}
}
@@ -0,0 +1,2 @@
public class GoalSwitch extends FarGoal{
}
@@ -0,0 +1,5 @@
public class SwitchProvider {
public GoalSwitch method() {
return new GoalSwitch();
}
}