summaryrefslogtreecommitdiff
path: root/ops/tests/compile_fail/unsupported.rs
blob: 5856d72ef9ca32f6f8f565aa8071396846b4c791 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license.

use deno_ops::op;

#[op(fast)]
fn op_u8_arg(a: u8, b: u8) {
  //
}

#[op(fast)]
fn op_u16_arg(a: u16, b: u16) {
  //
}

use deno_core::v8::fast_api::FastApiCallbackOptions;

#[op(fast)]
fn op_callback_options(options: &mut FastApiCallbackOptions) {
  // fast callback options must be an Option.
}

#[op(fast)]
async fn op_async_fn(a: i32, b: i32) -> i32 {
  a + b
}

fn main() {
  // pass
}