Ignore SAM adapters when finding abstract members.

This commit is contained in:
Evgeny Gerashchenko
2013-06-13 20:40:31 +04:00
parent d78f36a780
commit eb7dc87225
6 changed files with 55 additions and 19 deletions
@@ -0,0 +1,10 @@
package test;
public interface InheritedSimple {
public interface Super {
void foo(Runnable r);
}
public interface Sub extends Super {
}
}