maud/maud/tests/errors.rs
Chris Wong c139b7b719 Ensure that trybuild tests are actually run
PR  removed the `unstable` flag, but the trybuild tests still
depended on it 🤦
2020-10-06 18:14:47 +11:00

7 lines
139 B
Rust

use trybuild::TestCases;
#[test]
fn run_warnings() {
let config = TestCases::new();
config.compile_fail("tests/warnings/*.rs");
}