mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
13 lines
167 B
Java
13 lines
167 B
Java
// "Add exception to method signature" "true-preview"
|
|
class C {
|
|
interface I {
|
|
void a();
|
|
}
|
|
|
|
{
|
|
I i = () -> {
|
|
Thread.sl<caret>eep(2000);
|
|
};
|
|
}
|
|
}
|