Guest User

Untitled

a guest
Apr 7th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. void Foo()
  2. {
  3. int i = 0
  4. if (i ==
  5. 0) i = 1// VALID
  6.  
  7. if (i == 1) i =
  8. 1 // INVALID
  9.  
  10. if (i == 1) (i =
  11. 1) // VALID
  12. }
Add Comment
Please, Sign In to add comment