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

9 lines
146 B
Java

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