fix finding lambdas implementing JDK interfaces

This commit is contained in:
peter
2015-09-23 13:48:55 +02:00
parent 4d2d29c11b
commit c70ab42653
4 changed files with 35 additions and 6 deletions
@@ -0,0 +1,6 @@
class Test{
public static void main(java.util.List<String> list) {
list.stream().filter((e) -> true)
}
}