mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 19:02:04 +07:00
GitOrigin-RevId: db3f36b4c3521d6e4d5523bf4cc2be61a76e82e2
11 lines
189 B
Java
11 lines
189 B
Java
public class Sample {
|
|
|
|
public int field = lambda(() -> {
|
|
<selection>Sample variable = new Sample();</selection>
|
|
});
|
|
|
|
int lambda(Runnable r) {
|
|
return 42;
|
|
}
|
|
|
|
} |