Files
2022-07-27 10:00:37 +00:00

8 lines
131 B
Java

// "Create local variable 't'" "true-preview"
class Test {
private void f() {
int i = <caret>t;
t = 0;
}
}