Guest User

Untitled

a guest
Mar 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. trait A<'a> {
  2. fn a<'b>(self) -> Box<A<'b>>;
  3. }
  4.  
  5. struct C;
  6.  
  7. impl<'a> A<'a> for C {
  8. fn a<'b>(self) -> Box<A<'a>> {}
  9. }
  10.  
  11. fn main() {}
Add Comment
Please, Sign In to add comment