mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-25 00:29:23 +07:00
9 lines
146 B
Java
9 lines
146 B
Java
// "Create local variable 't'" "true-preview"
|
|
class Test {
|
|
private void f() {
|
|
int t<caret>;
|
|
int i = t;
|
|
t = 0;
|
|
}
|
|
|
|
} |