rocket_codegen 0.5.1

Procedural macros for the Rocket web framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[test]
#[ignore]
fn ui() {
    let path = match version_check::is_feature_flaggable() {
        Some(true) => "ui-fail-nightly",
        _ => "ui-fail-stable"
    };

    let t = trybuild::TestCases::new();
    t.compile_fail(format!("tests/{}/*.rs", path));
}