about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDanuel <public.danuel@gmail.com>2021-02-02 00:43:16 +0900
committerDanuel <public.danuel@gmail.com>2021-02-02 00:43:16 +0900
commit838f487fc5a276eacb11d58d60b0f79358f9919f (patch)
treea7b876cd5d71da8f9d7acf3334a16cc4a9123351
parent8bbb2d057d1084368412f5236dfad8990ef98e49 (diff)
downloadrust-838f487fc5a276eacb11d58d60b0f79358f9919f.tar.gz
rust-838f487fc5a276eacb11d58d60b0f79358f9919f.zip
Bless tests
-rw-r--r--src/test/ui/proc-macro/ambiguous-builtin-attrs.stderr6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/ui/proc-macro/ambiguous-builtin-attrs.stderr b/src/test/ui/proc-macro/ambiguous-builtin-attrs.stderr
index 15935ebebeb..31959248a68 100644
--- a/src/test/ui/proc-macro/ambiguous-builtin-attrs.stderr
+++ b/src/test/ui/proc-macro/ambiguous-builtin-attrs.stderr
@@ -61,14 +61,14 @@ LL | use builtin_attrs::*;
    = help: use `crate::repr` to refer to this attribute macro unambiguously
 
 error[E0659]: `allow` is ambiguous (built-in attribute vs any other name)
-  --> $DIR/ambiguous-builtin-attrs.rs:36:3
+  --> $DIR/ambiguous-builtin-attrs.rs:38:3
    |
 LL | #[allow(unused)]
    |   ^^^^^ ambiguous name
    |
    = note: `allow` could refer to a built-in attribute
 note: `allow` could also refer to the built-in attribute imported here
-  --> $DIR/ambiguous-builtin-attrs.rs:35:5
+  --> $DIR/ambiguous-builtin-attrs.rs:37:5
    |
 LL | use deny as allow;
    |     ^^^^^^^^^^^^^
@@ -103,7 +103,7 @@ LL |         #[repr(C)]
 LL |         _ => {}
    |         ------- not a struct, enum, or union
 
-error: aborting due to 8 previous errors
+error: aborting due to 9 previous errors
 
 Some errors have detailed explanations: E0425, E0517, E0659.
 For more information about an error, try `rustc --explain E0425`.