mirror of
https://github.com/serde-rs/serde.git
synced 2025-09-27 04:50:36 +00:00
10 lines
318 B
Rust
10 lines
318 B
Rust
#[cfg_attr(target_os = "emscripten", ignore = "disabled on Emscripten")]
|
|
#[rustversion::attr(not(nightly), ignore = "requires nightly")]
|
|
#[cfg_attr(miri, ignore = "incompatible with miri")]
|
|
#[allow(unused_attributes)]
|
|
#[test]
|
|
fn ui() {
|
|
let t = trybuild::TestCases::new();
|
|
t.compile_fail("tests/ui/**/*.rs");
|
|
}
|