serde/test_suite/tests/compiletest.rs
2022-04-24 15:21:17 -07:00

9 lines
215 B
Rust

#[cfg_attr(target_os = "emscripten", ignore)]
#[rustversion::attr(not(nightly), ignore)]
#[cfg_attr(miri, ignore)]
#[test]
fn ui() {
let t = trybuild::TestCases::new();
t.compile_fail("tests/ui/**/*.rs");
}