Fixed loading SAM interfaces when they inherit abstract methods.

This commit is contained in:
Evgeny Gerashchenko
2013-05-21 16:37:24 +04:00
committed by Natalia.Ukhorskaya
parent cdb096035b
commit 19e1331c11
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> {
}