pomelo 0.2.3

Implementation of the Lemon parser generator as a Rust procedural macro
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::path::PathBuf;

#[test]
#[ignore]
fn compile_test() {
    let mut config = compiletest_rs::Config {
        mode: compiletest_rs::common::CompileFail,
        src_base: PathBuf::from("tests/compile-fail"),
        ..Default::default()
    };
    config.link_deps();
    //config.clean_rlib();
    //config.clean_rmeta();

    compiletest_rs::run_tests(&config);
}