rusty_v8 0.32.1

Rust bindings to V8
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::env;

#[test]
fn ui() {
  // This environment variable tells build.rs that we're running trybuild tests,
  // so it won't rebuild V8.
  env::set_var("DENO_TRYBUILD", "1");

  let t = trybuild::TestCases::new();
  t.compile_fail("tests/compile_fail/*.rs");
}