mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
9 lines
217 B
Java
9 lines
217 B
Java
abstract class Path implements Iterable<Path>{}
|
|
class Paths {
|
|
public static Path get(String s) {return null;}
|
|
}
|
|
class Usage {
|
|
public static void main(String[] args) {
|
|
<selection>Paths.get("")</selection>
|
|
}
|
|
} |