mirror of
https://github.com/Swatinem/rust-cache
synced 2025-04-14 16:18:43 +00:00
7 lines
172 B
Rust
7 lines
172 B
Rust
#[test]
|
|
fn test_trybuild() {
|
|
let t = trybuild::TestCases::new();
|
|
t.pass("tests/trybuild/empty_main.rs");
|
|
t.compile_fail("tests/trybuild/fail_to_compile.rs");
|
|
}
|