summaryrefslogtreecommitdiffstats
path: root/tests-build/tests/macros.rs
blob: 170db227735aee908bb8a97789b9251b6bb9d698 (plain)
1
2
3
4
5
6
7
8
9
#[test]
fn compile_fail() {
    let t = trybuild::TestCases::new();

    #[cfg(feature = "full")]
    t.compile_fail("tests/fail/macros_invalid_input.rs");

    drop(t);
}