mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 16:47:50 +07:00
GitOrigin-RevId: 9d8cf85eb1eee3ca8a38c2bcde119666afcc7934
13 lines
266 B
Java
13 lines
266 B
Java
// "Replace with 'Collection.size()'" "true-preview"
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class Main {
|
|
public static long test() {
|
|
List<String> s = new ArrayList<>();
|
|
/* unused parameter */
|
|
return s.size();
|
|
}
|
|
}
|