diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-28 06:02:37 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-28 06:02:37 +0800 |
| commit | da5e1a21fce9a303767af4a6d3cab8f0d66e5c87 (patch) | |
| tree | 30d33fce49a451788063c8cb2fbb0b8464198d12 /mingling_pathf/test/test_proj/src/main.rs | |
| parent | 9e0372f9d148a7c340cfab93727a7a3d3db023df (diff) | |
test: move test fixtures into `test_proj` subdirectory
Diffstat (limited to 'mingling_pathf/test/test_proj/src/main.rs')
| -rw-r--r-- | mingling_pathf/test/test_proj/src/main.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mingling_pathf/test/test_proj/src/main.rs b/mingling_pathf/test/test_proj/src/main.rs new file mode 100644 index 0000000..7a66e93 --- /dev/null +++ b/mingling_pathf/test/test_proj/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() {} |
