6 lines
148 B
Rust
6 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");
|
|
}
|