mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
13 lines
208 B
Java
13 lines
208 B
Java
// "Replace call with method body" "true-preview"
|
|
|
|
class Test {
|
|
void test() {
|
|
new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
int a =6;
|
|
}
|
|
}.r<caret>un();
|
|
int a =5;
|
|
}
|
|
} |