Guest User

Untitled

a guest
Jul 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. #![allow(unused)]
  2. use std::io;
  3.  
  4. fn unit_fn() {}
  5.  
  6. fn fallible() -> io::Result<()> {
  7. Ok(unit_fn())
  8. }
  9.  
  10. fn main() {}
Add Comment
Please, Sign In to add comment