blob: b641cf2674819ac658da30fa78f9cca5730930ae [file] [log] [blame]
interface Function<S, R> {
R fun(S s);
}
class Bar extends Function<String, ?>{
public Object fun(String s) {
<selection>return null;</selection>
}
}