mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 21:20:54 +07:00
16 lines
370 B
Java
16 lines
370 B
Java
import static java.util.Arrays.asList;
|
|
import static java.util.Arrays.sort;
|
|
<warning descr="Unused import statement">import static java.util.Arrays.binarySearch;</warning>
|
|
|
|
class StaticImports {
|
|
{
|
|
asList(new Object[]{});
|
|
}
|
|
|
|
void method() {
|
|
sort(new long[0]);
|
|
// sort< error descr="Cannot resolve method 'sort()'">()< /error>;
|
|
}
|
|
|
|
}
|