mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
calc expected types for the entire live template range
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
class Foo {
|
||||
|
||||
static void foo(List<String> ls) {
|
||||
List<String> ls2 = Arrays.asList(ls.toArray(new String[ls.size()])<caret>);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
class Foo {
|
||||
|
||||
static void foo(List<String> ls) {
|
||||
List<String> ls2 = Arrays.asList(<caret>);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user