From 21a5f1733c92cfcd6cfa2273f34e9573d0a154e6 Mon Sep 17 00:00:00 2001 From: moxian Date: Sun, 30 Mar 2025 16:25:05 -0700 Subject: [PATCH] Add a test for grouped reexports (failing) --- full-tests/reexports.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 full-tests/reexports.rs diff --git a/full-tests/reexports.rs b/full-tests/reexports.rs new file mode 100644 index 0000000..e60730b --- /dev/null +++ b/full-tests/reexports.rs @@ -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(); +}