about summary refs log tree commit diff
path: root/src/test/compile-fail/macro-inner-attributes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/macro-inner-attributes.rs')
-rw-r--r--src/test/compile-fail/macro-inner-attributes.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/test/compile-fail/macro-inner-attributes.rs b/src/test/compile-fail/macro-inner-attributes.rs
index ae804ea7ece..3e731a2d2fe 100644
--- a/src/test/compile-fail/macro-inner-attributes.rs
+++ b/src/test/compile-fail/macro-inner-attributes.rs
@@ -25,9 +25,8 @@ test!(b,
 #[qux]
 fn main() {
     a::bar();
-    //~^ ERROR use of undeclared module `a`
-    //~^^ ERROR unresolved name
-    //~^^^ ERROR unresolved name `a::bar`
+    //~^ ERROR failed to resolve. Use of undeclared module `a`
+    //~^^ ERROR unresolved name `a::bar`
     b::bar();
 }