lambda: don't hide raw substitutions in functional types hierarchies (IDEA-172301)

This commit is contained in:
Anna Kozlova
2017-05-04 20:29:52 +03:00
parent f3d0a39366
commit 5516110b50
3 changed files with 11 additions and 4 deletions
@@ -0,0 +1,9 @@
import java.util.function.Supplier;
class MyTest {
public static final Inh values = () -> "";
}
interface Inh extends Supplier {
}