Guest User

Untitled

a guest
Dec 11th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. fn main() {
  2.  
  3. let x = [(), (), ()]; // type is [(); 3]
  4.  
  5. println!("{:?} {:?} {:?}", &x[0] as *const (), &x[1] as *const (), &x[2] as *const ())
  6. }
Add Comment
Please, Sign In to add comment