1 #![deny(clippy::all, clippy::pedantic)]
2 
3 #[rustversion::attr(not(nightly), ignore)]
4 #[test]
ui()5 fn ui() {
6     let t = trybuild::TestCases::new();
7     t.compile_fail("tests/ui/*.rs");
8 }
9