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() {}