Guest User

Untitled

a guest
Jun 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. struct Foo;
  2.  
  3. fn main() {
  4. let x: Box<[Foo]> = Box::new([]);
  5. let y: Box<[i32]> = Box::new([]);
  6.  
  7. println!("{:p} {:p}", x, y);
  8. }
Add Comment
Please, Sign In to add comment