8 lines
181 B
Rust
8 lines
181 B
Rust
#[cfg(not(target_os = "emscripten"))]
|
|
#[rustversion::attr(not(nightly), ignore)]
|
|
#[test]
|
|
fn ui() {
|
|
let t = trybuild::TestCases::new();
|
|
t.compile_fail("tests/ui/**/*.rs");
|
|
}
|