Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
proc-macro
/
issue-79148.rs
blob: 7ce6216c842a6623c28fdf8a8e3a298fbcaf7476 [
file
] [
log
] [
blame
]
//@ proc-macro: re-export.rs
//@ edition:2018
//@ ignore-backends: gcc
extern
crate re_export
;
use
re_export
::
cause_ice
;
cause_ice
!();
//~ ERROR `Variant` is only public within the crate, and cannot be re-exported outside
fn
main
()
{}