rustc/vendor/cstr/tests/compile_test.rs
2021-04-15 23:27:12 +01:00

7 lines
148 B
Rust

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