Add error message to say Result is not implemented yet
diff --git a/syntax/check.rs b/syntax/check.rs
index ef3faff..80937bb 100644
--- a/syntax/check.rs
+++ b/syntax/check.rs
@@ -69,6 +69,12 @@
                         errors.push(return_by_value(ty, types));
                     }
                 }
+                if efn.throws {
+                    errors.push(Error::new_spanned(
+                        efn,
+                        "fallible functions are not implemented yet",
+                    ));
+                }
             }
             _ => {}
         }