Add a test for grouped reexports (failing)

This commit is contained in:
moxian 2025-03-30 16:25:05 -07:00 committed by nora
parent 46c26f7af9
commit 21a5f1733c

12
full-tests/reexports.rs Normal file
View file

@ -0,0 +1,12 @@
use hello::{thingy, whatever};
mod hello{
pub fn thingy(){}
/// ~REQUIRE-DELETED whatever
pub fn whatever(){}
}
fn main(){
"~MINIMIZE-ROOT let x = thingy";
let x = thingy();
}