SortContentAction: consistent count of expr to be available: IDEA-185785

This commit is contained in:
Roman Ivanov
2018-01-30 13:58:05 +07:00
parent a7cde913aa
commit c71ae7e4f1
3 changed files with 23 additions and 1 deletions
@@ -0,0 +1,11 @@
// "Sort content" "true"
import java.util.*;
public class Main {
private static void foo(int... vararg) {}
private void test() {
foo(1, 3, 4);
}
}
@@ -0,0 +1,11 @@
// "Sort content" "true"
import java.util.*;
public class Main {
private static void foo(int... vararg) {}
private void test() {
foo(1, <caret>4, 3);
}
}