IDEA-206386 Stream.toUnmodifiableList autocompletion (and mockJDK-11 to test it)

This commit is contained in:
peter
2019-02-01 11:42:45 +01:00
parent b191104b01
commit 0112b8aaa8
7 changed files with 27 additions and 5 deletions
@@ -0,0 +1,7 @@
import java.util.*;
class Foo {
void m() {
Arrays.asList("a", "b").stream().toUnmod<caret>
}
}