We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1449ffb commit be9a4e4Copy full SHA for be9a4e4
tests/compiletest.rs
@@ -1,7 +1,7 @@
1
#[allow(unused_attributes)]
2
-#[rustversion::attr(not(nightly), ignore)]
3
-#[cfg_attr(skip_ui_tests, ignore)]
4
-#[cfg_attr(miri, ignore)]
+#[rustversion::attr(not(nightly), ignore = "requires nightly")]
+#[cfg_attr(skip_ui_tests, ignore = "disabled by `--cfg=skip_ui_tests`")]
+#[cfg_attr(miri, ignore = "incompatible with miri")]
5
#[test]
6
fn ui() {
7
let t = trybuild::TestCases::new();
0 commit comments