Fixed loading SAM interfaces when they inherit abstract methods.

This commit is contained in:
Evgeny Gerashchenko
2013-05-21 16:37:24 +04:00
parent fb416418f0
commit de6d5a4a96
10 changed files with 76 additions and 8 deletions
@@ -0,0 +1,6 @@
package test;
import java.util.Comparator;
public interface SubstitutedSamInterface extends Comparator<String> {
}