summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-3253/paths
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/issue-3253/paths')
-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
3 files changed, 25 insertions, 0 deletions
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,
+{
+}