about summary refs log tree commit diff
path: root/src/test/ui/custom_attribute.rs
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2019-09-15 12:55:18 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2019-09-15 13:10:12 +0300
commit42a19dde82a55b65f18566d54dbbb033a22e08d9 (patch)
tree7a40514695eed8799244af2e1b1e905c1348312c /src/test/ui/custom_attribute.rs
parent8bf776d5c2fc88624d2562e493aab0d324a3b7d8 (diff)
downloadrust-42a19dde82a55b65f18566d54dbbb033a22e08d9.tar.gz
rust-42a19dde82a55b65f18566d54dbbb033a22e08d9.zip
resolve: Tweak "cannot find" wording for attributes
Diffstat (limited to 'src/test/ui/custom_attribute.rs')
-rw-r--r--src/test/ui/custom_attribute.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/ui/custom_attribute.rs b/src/test/ui/custom_attribute.rs
index 13c873c3b7e..4957184229d 100644
--- a/src/test/ui/custom_attribute.rs
+++ b/src/test/ui/custom_attribute.rs
@@ -1,9 +1,9 @@
 #![feature(stmt_expr_attributes)]
 
-#[foo] //~ ERROR cannot find attribute macro `foo` in this scope
+#[foo] //~ ERROR cannot find attribute `foo` in this scope
 fn main() {
-    #[foo] //~ ERROR cannot find attribute macro `foo` in this scope
+    #[foo] //~ ERROR cannot find attribute `foo` in this scope
     let x = ();
-    #[foo] //~ ERROR cannot find attribute macro `foo` in this scope
+    #[foo] //~ ERROR cannot find attribute `foo` in this scope
     x
 }