Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class Reordering {
  2. int x = 0, y = 0;
  3. public void writer() {
  4. x = 1;
  5. y = 2;
  6. }
  7.  
  8. public void reader() {
  9. int r1 = y;
  10. int r2 = x;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement