mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-22 05:37:58 +00:00
12 lines
259 B
Rust
12 lines
259 B
Rust
#![cfg(any())]
|
|
|
|
#[cfg_attr(target_os = "emscripten", ignore)]
|
|
#[rustversion::attr(not(nightly), ignore)]
|
|
#[cfg_attr(miri, ignore)]
|
|
#[allow(unused_attributes)]
|
|
#[test]
|
|
fn ui() {
|
|
let t = trybuild::TestCases::new();
|
|
t.compile_fail("tests/ui/**/*.rs");
|
|
}
|