blob: cf83f93c82f6d812ac05649b9f0c75e167bc8c75 [file] [log] [blame]
import static java.lang.Character.toLowerCase;
public class StaticImport {
void example() {
"".codePoints().map(Character::toLowerCase);
}
}