mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
testdata for IDEA-121055
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import java.util.List;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
import static java.util.stream.Collectors.toList;
|
||||
|
||||
class TypeDetectionTest {
|
||||
|
||||
public static void main(String[] args) {
|
||||
List<Number> numbers = Stream.of(1, 2).collect(toList());
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user