]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/issue-79148.stderr
Rollup merge of #106591 - Ezrashaw:attempted-integer-identifer, r=Estebank
[rust.git] / tests / ui / proc-macro / issue-79148.stderr
1 error[E0364]: `Variant` is only public within the crate, and cannot be re-exported outside
2   --> $DIR/issue-79148.rs:8:1
3    |
4 LL | cause_ice!();
5    | ^^^^^^^^^^^^
6    |
7 note: consider marking `Variant` as `pub` in the imported module
8   --> $DIR/issue-79148.rs:8:1
9    |
10 LL | cause_ice!();
11    | ^^^^^^^^^^^^
12    = note: this error originates in the macro `cause_ice` (in Nightly builds, run with -Z macro-backtrace for more info)
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0364`.