Guest User

Untitled

a guest
Mar 24th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. //static mut I : i32 = unsafe { std::mem::uninitialized() };
  2. static mut I : i32 = 5;
  3.  
  4. fn main() {
  5. unsafe { I = 6 }
  6. println!("{}", unsafe { I });
  7. }
Add Comment
Please, Sign In to add comment