about summary refs log tree commit diff
path: root/src/test/ui/proc-macro/macro-namespace-reserved-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/proc-macro/macro-namespace-reserved-2.rs')
-rw-r--r--src/test/ui/proc-macro/macro-namespace-reserved-2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/proc-macro/macro-namespace-reserved-2.rs b/src/test/ui/proc-macro/macro-namespace-reserved-2.rs
index 8a26df9e76a..bc46a07dd3f 100644
--- a/src/test/ui/proc-macro/macro-namespace-reserved-2.rs
+++ b/src/test/ui/proc-macro/macro-namespace-reserved-2.rs
@@ -35,7 +35,7 @@ fn check_bang3() {
                        //~| ERROR expected macro, found derive macro `crate::MyTrait`
 }
 
-#[my_macro] //~ ERROR cannot find attribute macro `my_macro` in this scope
+#[my_macro] //~ ERROR cannot find attribute `my_macro` in this scope
 #[crate::my_macro] //~ ERROR can't use a procedural macro from the same crate that defines it
                    //~| ERROR expected attribute, found macro `crate::my_macro`
 fn check_attr1() {}