From 9e0372f9d148a7c340cfab93727a7a3d3db023df Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 28 Jun 2026 05:59:43 +0800 Subject: test(mingling-pathf): add integration tests for module path analysis --- mingling_pathf/test/src/main.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 mingling_pathf/test/src/main.rs (limited to 'mingling_pathf/test/src/main.rs') diff --git a/mingling_pathf/test/src/main.rs b/mingling_pathf/test/src/main.rs new file mode 100644 index 0000000..7a66e93 --- /dev/null +++ b/mingling_pathf/test/src/main.rs @@ -0,0 +1,13 @@ +#![allow(unused)] + +pub mod directly_mod; + +pub mod has_sub_mod; + +mod has_sub_use; +pub use has_sub_use::*; + +mod use_all; +pub use use_all::*; + +fn main() {} -- cgit