Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. trait SomeTrait<'a> {
  2. type Output;
  3. }
  4.  
  5. impl<'a, T> SomeTrait<'a> for T {
  6. type Output = &'a T; // compile error E0491
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement