mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +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);
|
|
};
|
|
}
|
|
}
|