Jean-Baptiste Queru | b56ea2a | 2013-01-08 11:11:20 -0800 | [diff] [blame] | 1 | public abstract class X { |
2 | protected abstract void f(); | ||||
3 | } | ||||
Tor Norbye | a6eac33 | 2013-05-08 15:46:07 -0700 | [diff] [blame] | 4 | <spot>public class XImpl extends X { |
Jean-Baptiste Queru | b56ea2a | 2013-01-08 11:11:20 -0800 | [diff] [blame] | 5 | protected void f() { |
Jean-Baptiste Queru | b56ea2a | 2013-01-08 11:11:20 -0800 | [diff] [blame] | 6 | } |
Tor Norbye | a6eac33 | 2013-05-08 15:46:07 -0700 | [diff] [blame] | 7 | }</spot> |