0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2025-01-21 21:50:20 -05:00
denoland-rusty-v8/tests/compile_fail/handle_scope_escape_to_nowhere.stderr

20 lines
1.2 KiB
Text
Raw Normal View History

2021-10-27 14:32:12 +02:00
error[E0277]: the trait bound `OwnedIsolate: v8::scope::param::NewEscapableHandleScope<'_, '_>` is not satisfied
2022-03-02 17:30:58 +05:30
--> tests/compile_fail/handle_scope_escape_to_nowhere.rs:5:50
2021-09-10 19:32:29 +09:00
|
2021-10-27 14:32:12 +02:00
5 | let mut _scope = v8::EscapableHandleScope::new(&mut isolate);
2021-12-14 21:07:56 -08:00
| ----------------------------- ^^^^^^^^^^^^ the trait `v8::scope::param::NewEscapableHandleScope<'_, '_>` is not implemented for `OwnedIsolate`
| |
| required by a bound introduced by this call
2021-09-10 19:32:29 +09:00
|
2022-03-02 17:30:58 +05:30
note: required by a bound in `EscapableHandleScope::<'s, 'e>::new`
--> src/scope.rs
2021-09-10 19:32:29 +09:00
|
2022-03-02 17:30:58 +05:30
| pub fn new<P: param::NewEscapableHandleScope<'s, 'e>>(
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `EscapableHandleScope::<'s, 'e>::new`
2021-10-27 14:32:12 +02:00
error[E0277]: the trait bound `OwnedIsolate: v8::scope::param::NewEscapableHandleScope<'_, '_>` is not satisfied
2022-03-02 17:30:58 +05:30
--> tests/compile_fail/handle_scope_escape_to_nowhere.rs:5:20
|
2021-10-27 14:32:12 +02:00
5 | let mut _scope = v8::EscapableHandleScope::new(&mut isolate);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `v8::scope::param::NewEscapableHandleScope<'_, '_>` is not implemented for `OwnedIsolate`