blob: 124d6619a0f8735773264fd4a8309d1832ec1496 [file] [log] [blame]
public class Foo {
private void f() {
int x = 10;
int t = x;
x += 10;
System.out.println(t);
}
}