summaryrefslogtreecommitdiff
path: root/ops/tests/compile_fail/unsupported.rs
diff options
context:
space:
mode:
authorAapo Alasuutari <aapo.alasuutari@gmail.com>2022-09-23 05:55:37 +0300
committerGitHub <noreply@github.com>2022-09-23 08:25:37 +0530
commitb5dfcbbcbe6be8ac0a54e14eb8aeb0557b58f55d (patch)
tree26b70440482be43571898f90c089caef87eaed2e /ops/tests/compile_fail/unsupported.rs
parent1b04ff07823704301817519715e75059dcc6a9a4 (diff)
feat(ops): Fallible fast ops (#15989)
Diffstat (limited to 'ops/tests/compile_fail/unsupported.rs')
-rw-r--r--ops/tests/compile_fail/unsupported.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/ops/tests/compile_fail/unsupported.rs b/ops/tests/compile_fail/unsupported.rs
index 52d55de5b..5856d72ef 100644
--- a/ops/tests/compile_fail/unsupported.rs
+++ b/ops/tests/compile_fail/unsupported.rs
@@ -3,11 +3,6 @@
use deno_ops::op;
#[op(fast)]
-fn op_result_return(a: i32, b: i32) -> Result<(), ()> {
- a + b
-}
-
-#[op(fast)]
fn op_u8_arg(a: u8, b: u8) {
//
}