summaryrefslogtreecommitdiffstats
path: root/src/test/ui/attributes/register-attr-tool-prelude.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/attributes/register-attr-tool-prelude.rs')
-rw-r--r--src/test/ui/attributes/register-attr-tool-prelude.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/attributes/register-attr-tool-prelude.rs b/src/test/ui/attributes/register-attr-tool-prelude.rs
deleted file mode 100644
index d217a8146..000000000
--- a/src/test/ui/attributes/register-attr-tool-prelude.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-#![feature(register_attr)]
-#![feature(register_tool)]
-
-#![register_attr(attr)]
-#![register_tool(tool)]
-
-#[no_implicit_prelude]
-mod m {
- #[attr] //~ ERROR cannot find attribute `attr` in this scope
- #[tool::attr] //~ ERROR failed to resolve: use of undeclared crate or module `tool`
- fn check() {}
-}
-
-fn main() {}