Fill in ignore reasons in all #[ignore] attributes

This commit is contained in:
David Tolnay 2024-06-01 22:13:43 -07:00
parent c9b9f88c1a
commit fa8aa223c6
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -1,5 +1,5 @@
#[rustversion::attr(not(nightly), ignore)]
#[cfg_attr(miri, ignore)]
#[rustversion::attr(not(nightly), ignore = "requires nightly")]
#[cfg_attr(miri, ignore = "incompatible with miri")]
#[test]
fn ui() {
let t = trybuild::TestCases::new();