mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-10-01 12:20:39 +00:00

This directory was deleted when `cargo hack` was introduced, however there were some tests that were still useful (macro failure output). Also, additional build tests will be added over time.
10 lines
172 B
Rust
10 lines
172 B
Rust
#[test]
|
|
fn compile_fail() {
|
|
let t = trybuild::TestCases::new();
|
|
|
|
#[cfg(feature = "full")]
|
|
t.compile_fail("tests/fail/macros_invalid_input.rs");
|
|
|
|
drop(t);
|
|
}
|