Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. struct Foo<'a> {
  2. a: &'a [u8],
  3. }
  4.  
  5. struct Bar<'a> {
  6. f: &'a Foo
  7. }
  8.  
  9. fn main() {
  10. println!("Hello, world!");
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement