Skip to content

Commit ffb7027

Browse files
bless test
1 parent 0b84290 commit ffb7027

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)