Guest User

Untitled

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