Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. pub trait Foo {
  2. type Type;
  3. }
  4.  
  5. pub struct Bar<T>(<Self as Foo>::Type)
  6. where
  7. Self: ;
  8.  
  9. fn main() {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement