Add a test for grouped reexports (failing)

This commit is contained in:
moxian 2025-03-30 16:25:05 -07:00
parent 5d4605c8cc
commit 963a1faf69

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