mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 20:05:16 +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;
|
|
}
|
|
} |