blob: 0f3848efd9e1a6bc18f3ab2bacd32687338baa25 [file] [log] [blame]
// "Create Local Variable 't'" "true"
class Test {
private void f() {
int t<caret>;
int i = t;
t = 0;
}
}