summaryrefslogtreecommitdiffstats
path: root/third_party/rust/phf_macros/tests/compiletest.rs
blob: c95f3c80738a7f1b6d4164e76ee78cf64416a027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#[test]
#[ignore] // compiler error message format is different between 1.32.0 and nightly
fn compile_test_unicase() {
    let t = trybuild::TestCases::new();
    t.compile_fail("tests/compile-fail-unicase/*.rs");
}

#[test]
#[ignore]
fn compile_fail() {
    let t = trybuild::TestCases::new();
    t.compile_fail("tests/compile-fail/*.rs");
}