summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-3253
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/issue-3253')
-rw-r--r--src/tools/rustfmt/tests/target/issue-3253/bar.rs2
-rw-r--r--src/tools/rustfmt/tests/target/issue-3253/foo.rs3
-rw-r--r--src/tools/rustfmt/tests/target/issue-3253/lib.rs14
-rw-r--r--src/tools/rustfmt/tests/target/issue-3253/paths/bar_foo.rs3
-rw-r--r--src/tools/rustfmt/tests/target/issue-3253/paths/excluded.rs17
-rw-r--r--src/tools/rustfmt/tests/target/issue-3253/paths/foo_bar.rs5
6 files changed, 44 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/issue-3253/bar.rs b/src/tools/rustfmt/tests/target/issue-3253/bar.rs
new file mode 100644
index 000000000..6c6ab945b
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/issue-3253/bar.rs
@@ -0,0 +1,2 @@
+// Empty
+fn empty() {}
diff --git a/src/tools/rustfmt/tests/target/issue-3253/foo.rs b/src/tools/rustfmt/tests/target/issue-3253/foo.rs
new file mode 100644
index 000000000..1a42a1015
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/issue-3253/foo.rs
@@ -0,0 +1,3 @@
+pub fn hello() {
+ println!("Hello World!");
+}
diff --git a/src/tools/rustfmt/tests/target/issue-3253/lib.rs b/src/tools/rustfmt/tests/target/issue-3253/lib.rs
new file mode 100644
index 000000000..3eef586bd
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/issue-3253/lib.rs
@@ -0,0 +1,14 @@
+#[macro_use]
+extern crate cfg_if;
+
+cfg_if! {
+ if #[cfg(target_family = "unix")] {
+ mod foo;
+ #[path = "paths/bar_foo.rs"]
+ mod bar_foo;
+ } else {
+ mod bar;
+ #[path = "paths/foo_bar.rs"]
+ mod foo_bar;
+ }
+}
diff --git a/src/tools/rustfmt/tests/target/issue-3253/paths/bar_foo.rs b/src/tools/rustfmt/tests/target/issue-3253/paths/bar_foo.rs
new file mode 100644
index 000000000..f7e1de29a
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/issue-3253/paths/bar_foo.rs
@@ -0,0 +1,3 @@
+fn foo_decl_item(x: &mut i32) {
+ x = 3;
+}
diff --git a/src/tools/rustfmt/tests/target/issue-3253/paths/excluded.rs b/src/tools/rustfmt/tests/target/issue-3253/paths/excluded.rs
new file mode 100644
index 000000000..9ab88414d
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/issue-3253/paths/excluded.rs
@@ -0,0 +1,17 @@
+// This module is not imported in the cfg_if macro in lib.rs so it is ignored
+// while the foo and bar mods are formatted.
+// Check the corresponding file in tests/source/issue-3253/paths/excluded.rs
+
+
+
+
+ fn Foo<T>() where T: Bar {
+}
+
+
+
+trait CoolerTypes { fn dummy(&self) {
+}
+}
+
+
diff --git a/src/tools/rustfmt/tests/target/issue-3253/paths/foo_bar.rs b/src/tools/rustfmt/tests/target/issue-3253/paths/foo_bar.rs
new file mode 100644
index 000000000..f52ac11b7
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/issue-3253/paths/foo_bar.rs
@@ -0,0 +1,5 @@
+fn Foo<T>()
+where
+ T: Bar,
+{
+}