This commit is contained in:
Roman Shevchenko
2012-09-18 19:34:22 +02:00
parent e1d5dc3ac7
commit b4cf161740
17 changed files with 43 additions and 82 deletions
@@ -0,0 +1,7 @@
abstract class StraightLine implements Inline {
public abstract void go(); // inline this method
}
interface Inline {
}