]> git.proxmox.com Git - rustc.git/blob - src/test/ui-fulldeps/plugin-reexport.stderr
New upstream version 1.40.0+dfsg1
[rustc.git] / src / test / ui-fulldeps / plugin-reexport.stderr
1 error[E0364]: `mac` is private, and cannot be re-exported
2 --> $DIR/plugin-reexport.rs:9:9
3 |
4 LL | pub use mac as reexport;
5 | ^^^^^^^^^^^^^^^
6 |
7 note: consider marking `mac` as `pub` in the imported module
8 --> $DIR/plugin-reexport.rs:9:9
9 |
10 LL | pub use mac as reexport;
11 | ^^^^^^^^^^^^^^^
12
13 warning: use of deprecated attribute `plugin`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
14 --> $DIR/plugin-reexport.rs:6:1
15 |
16 LL | #![plugin(attr_plugin_test)]
17 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
18 |
19 = note: `#[warn(deprecated)]` on by default
20
21 error: aborting due to previous error
22
23 For more information about this error, try `rustc --explain E0364`.