mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 02:39:37 +07:00
9 lines
209 B
Java
9 lines
209 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) {
|
|
Path path = Paths.get("");
|
|
}
|
|
} |