mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 11:42:40 +07:00
GitOrigin-RevId: 7f72c5f68ab821e728eb0d5152f0910f48035046
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);
|
|
};
|
|
}
|
|
}
|