blob: 94ee12db2a948c7253e65f89b9ccb3a3fc98f194 [file] [log] [blame]
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("");
}
}