Guest User

Untitled

a guest
Jun 24th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #![feature(rust_2018_preview)]
  2.  
  3. trait Foo<'a> {
  4. fn x();
  5. }
  6.  
  7. impl Foo<'a> for bool {
  8. fn x() {
  9. impl Foo<'a> for u8 {
  10. fn x() {}
  11. }
  12. }
  13. }
  14.  
  15. fn main() {}
Add Comment
Please, Sign In to add comment