mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 06:39:33 +07:00
GitOrigin-RevId: 78b9aa6520ca3da432b4bcf15b55857cf9c519e9
10 lines
169 B
Java
10 lines
169 B
Java
class Safe {
|
|
public String <caret>x(int i) {
|
|
return "yes";
|
|
}
|
|
|
|
static void main() {
|
|
final Safe safe = new Safe();
|
|
IntFunction<String> f = safe::x;
|
|
}
|
|
} |