From f6c104fd1da0a330a425c0344c1cf027f68f2b20 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 24 Apr 2022 16:00:18 -0700 Subject: [PATCH] Ignore unused ignore attribute warning in some configurations --- test_suite/tests/compiletest.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/test_suite/tests/compiletest.rs b/test_suite/tests/compiletest.rs index c2d19940..621660b0 100644 --- a/test_suite/tests/compiletest.rs +++ b/test_suite/tests/compiletest.rs @@ -1,6 +1,7 @@ #[cfg_attr(target_os = "emscripten", ignore)] #[rustversion::attr(not(nightly), ignore)] #[cfg_attr(miri, ignore)] +#[allow(unused_attributes)] #[test] fn ui() { let t = trybuild::TestCases::new();