mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
- use not-on-the-fly GitOrigin-RevId: 31272bd0a4670ddd80aae4fdbe756010cf14ac47
9 lines
198 B
Java
9 lines
198 B
Java
<caret>import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
class MissortedImports{
|
|
public static void main(String[] args) {
|
|
List<String> a = new ArrayList<>();
|
|
System.out.println(a);
|
|
}
|
|
} |