We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b84290 commit ffb7027Copy full SHA for ffb7027
tests/ui/imports/same-res-ambigious.fail.stderr
@@ -0,0 +1,20 @@
1
+error[E0603]: derive macro `Embed` is private
2
+ --> $DIR/same-res-ambigious.rs:8:28
3
+ |
4
+LL | #[derive(ambigious_extern::Embed)]
5
+ | ^^^^^ private derive macro
6
7
+note: the derive macro `Embed` is defined here
8
+ --> $DIR/auxiliary/same-res-ambigious-extern-fail.rs:16:9
9
10
+LL | pub use RustEmbed as Embed;
11
+ | ^^^^^^^^^
12
+help: import `Embed` directly
13
14
+LL - #[derive(ambigious_extern::Embed)]
15
+LL + #[derive(same_res_ambigious_extern_macro::RustEmbed)]
16
17
+
18
+error: aborting due to 1 previous error
19
20
+For more information about this error, try `rustc --explain E0603`.
0 commit comments