summaryrefslogtreecommitdiffstats
path: root/src/test/ui/attributes/tool_attributes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/attributes/tool_attributes.rs')
-rw-r--r--src/test/ui/attributes/tool_attributes.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/ui/attributes/tool_attributes.rs b/src/test/ui/attributes/tool_attributes.rs
deleted file mode 100644
index be4a10c0e..000000000
--- a/src/test/ui/attributes/tool_attributes.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-// run-pass
-// Scoped attributes should not trigger an unused attributes lint.
-
-#![deny(unused_attributes)]
-
-fn main() {
- #[rustfmt::skip]
- foo ();
-}
-
-fn foo() {
- assert!(true);
-}