push down from interface to abstract class fixed (IDEA-82286)

This commit is contained in:
anna
2012-03-12 12:43:05 +01:00
parent e0e2622efd
commit 3c5d7a568d
4 changed files with 23 additions and 2 deletions
@@ -0,0 +1,7 @@
abstract class StraightLine implements Inline {
public abstract void go(); // inline this method
}
interface Inline {
}