Guest User

Untitled

a guest
Feb 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. trait Trait {
  2. type Type;
  3. }
  4.  
  5. fn foo<T: Trait<Type = u8>>(t: T) {}
  6.  
  7. fn main() {
  8. println!("Hello, world!");
  9. }
Add Comment
Please, Sign In to add comment