mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 00:35:33 +07:00
GitOrigin-RevId: c7a58c6e06726607fb5e97d74624a468d684a8ec
11 lines
174 B
Java
11 lines
174 B
Java
class MyTest {
|
|
{
|
|
new Runnable() {
|
|
private static void print() {}
|
|
@Override
|
|
public void run() {
|
|
Runnable r = () -> print();
|
|
}
|
|
}
|
|
}
|
|
} |