Guest User

Untitled

a guest
Feb 17th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. pub fn f3() -> Result<u8, u8> {
  2. f4()
  3. }
  4.  
  5. pub fn f4() -> Result<u8, !> {
  6. unimplemented!()
  7. }
  8.  
  9. pub fn f5() -> Result<u8, !> {
  10. f3()
  11. }
  12.  
  13. fn main() {
  14. f5();
  15. }
Add Comment
Please, Sign In to add comment