0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2025-03-10 05:56:52 -04:00
rusty-v8/tests/compile_fail/boxed_local.rs
2020-02-12 14:45:14 -08:00

18 lines
427 B
Rust

// Copyright 2019-2020 the Deno authors. All rights reserved. MIT license.
use rusty_v8 as v8;
pub fn main() {
let mut isolate = v8::Isolate::new(mock());
let mut root_hs = v8::HandleScope::new(&mut isolate);
let root_hs = root_hs.enter();
let _boxed = {
let mut hs = v8::HandleScope::new(root_hs);
let hs = hs.enter();
Box::new(v8::Integer::new(hs, 123))
};
}
fn mock<T>() -> T {
unimplemented!()
}