]> git.lizzy.rs Git - rust.git/blob - src/test/ui/no-link.stderr
Rollup merge of #53246 - ljedrz:cleanup_various, r=kennytm
[rust.git] / src / test / ui / no-link.stderr
1 warning: proc macro crates and `#[no_link]` crates have no effect without `#[macro_use]`
2   --> $DIR/no-link.rs:14:1
3    |
4 LL | extern crate empty_struct;
5    | ^^^^^^^^^^^^^^^^^^^^^^^^^^
6
7 error[E0425]: cannot find value `XEmpty1` in module `empty_struct`
8   --> $DIR/no-link.rs:18:19
9    |
10 LL |     empty_struct::XEmpty1; //~ ERROR cannot find value `XEmpty1` in module `empty_struct`
11    |                   ^^^^^^^ not found in `empty_struct`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0425`.