Added test with inherited SAM adapter.

This commit is contained in:
Evgeny Gerashchenko
2013-06-14 20:25:03 +04:00
parent 8e49eb135a
commit 906f900b28
3 changed files with 34 additions and 0 deletions
@@ -0,0 +1,13 @@
package test;
public interface InheritedOverridden {
public class Super {
public void foo(Runnable r) {
}
}
public class Sub extends Super {
public void foo(Runnable r) {
}
}
}