Guest User

Untitled

a guest
May 27th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. struct V(u64);
  2.  
  3. struct S<'a> {
  4. p: V,
  5. c: &'a V,
  6. }
  7.  
  8. fn main() {
  9. let p = V(1234);
  10. let s = S { p, c: &p };
  11. }
Add Comment
Please, Sign In to add comment