summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/5131_module.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/5131_module.rs')
-rw-r--r--src/tools/rustfmt/tests/target/5131_module.rs32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/5131_module.rs b/src/tools/rustfmt/tests/target/5131_module.rs
new file mode 100644
index 000000000..763024d6f
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/5131_module.rs
@@ -0,0 +1,32 @@
+// rustfmt-imports_granularity: Module
+
+#![allow(dead_code)]
+
+mod a {
+ pub mod b {
+ pub struct Data {
+ pub a: i32,
+ }
+ }
+
+ use crate::a::b::{Data, Data as Data2};
+
+ pub fn data(a: i32) -> Data {
+ Data { a }
+ }
+
+ pub fn data2(a: i32) -> Data2 {
+ Data2 { a }
+ }
+
+ #[cfg(test)]
+ mod tests {
+ use super::*;
+
+ #[test]
+ pub fn test() {
+ data(1);
+ data2(1);
+ }
+ }
+}