1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-01 16:51:13 -05:00
denoland-deno/ops/tests/compile_fail/unsupported.stderr

40 lines
1 KiB
Text
Raw Normal View History

2022-08-21 08:07:53 -04:00
error: custom attribute panicked
--> tests/compile_fail/unsupported.rs:5:1
|
5 | #[op(fast)]
| ^^^^^^^^^^^
|
= help: message: op cannot be a fast api. enforced by #[op(fast)]
error: custom attribute panicked
--> tests/compile_fail/unsupported.rs:10:1
|
10 | #[op(fast)]
| ^^^^^^^^^^^
|
= help: message: op cannot be a fast api. enforced by #[op(fast)]
error: custom attribute panicked
2022-09-22 22:55:37 -04:00
--> tests/compile_fail/unsupported.rs:17:1
2022-08-21 08:07:53 -04:00
|
2022-09-22 22:55:37 -04:00
17 | #[op(fast)]
2022-08-21 08:07:53 -04:00
| ^^^^^^^^^^^
|
= help: message: op cannot be a fast api. enforced by #[op(fast)]
error: custom attribute panicked
--> tests/compile_fail/unsupported.rs:22:1
2022-08-21 08:07:53 -04:00
|
22 | #[op(fast)]
2022-08-21 08:07:53 -04:00
| ^^^^^^^^^^^
|
= help: message: async op cannot be a fast api. enforced by #[op(fast)]
warning: unused import: `deno_core::v8::fast_api::FastApiCallbackOptions`
2022-09-22 22:55:37 -04:00
--> tests/compile_fail/unsupported.rs:15:5
|
2022-09-22 22:55:37 -04:00
15 | use deno_core::v8::fast_api::FastApiCallbackOptions;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default