blob: b68aa016fe9e54c6f4c063ed1620b8328384ab09 [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) {
<selection>Paths.get("")</selection>
}
}