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");
|
|
}
|