Guest User

Untitled

a guest
May 23rd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. pub fn x(mut n: u32) -> u32 {
  2. 'a: while {break 'a; true} {
  3. n += 1;
  4. }
  5. n
  6. }
  7.  
  8. fn main() {
  9. let mut n = x(0);
  10.  
  11. n += 1;
  12. println!("{}", x(0));
  13. }
Add Comment
Please, Sign In to add comment