mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-06 06:17:39 +03:00
9 lines
207 B
Rust
9 lines
207 B
Rust
#![deny(clippy::all, clippy::pedantic)]
|
|
|
|
#[rustversion::attr(not(nightly), ignore)]
|
|
#[cfg_attr(miri, ignore)]
|
|
#[test]
|
|
fn ui() {
|
|
let t = trybuild::TestCases::new();
|
|
t.compile_fail("tests/ui/*.rs");
|
|
}
|