summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/issue-3701
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/source/issue-3701')
-rw-r--r--src/tools/rustfmt/tests/source/issue-3701/one.rs12
-rw-r--r--src/tools/rustfmt/tests/source/issue-3701/two.rs12
2 files changed, 24 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/source/issue-3701/one.rs b/src/tools/rustfmt/tests/source/issue-3701/one.rs
new file mode 100644
index 000000000..a7f0bd3aa
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/issue-3701/one.rs
@@ -0,0 +1,12 @@
+// rustfmt-version: One
+
+fn build_sorted_static_get_entry_names(
+ mut entries: Vec<(u8, &'static str)>,
+) -> (impl Fn(
+ AlphabeticalTraversal,
+ Box<dyn dirents_sink::Sink<AlphabeticalTraversal>>,
+) -> BoxFuture<'static, Result<Box<dyn dirents_sink::Sealed>, Status>>
+ + Send
+ + Sync
+ + 'static) {
+}
diff --git a/src/tools/rustfmt/tests/source/issue-3701/two.rs b/src/tools/rustfmt/tests/source/issue-3701/two.rs
new file mode 100644
index 000000000..8e15c58b8
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/issue-3701/two.rs
@@ -0,0 +1,12 @@
+// rustfmt-version: Two
+
+fn build_sorted_static_get_entry_names(
+ mut entries: Vec<(u8, &'static str)>,
+) -> (impl Fn(
+ AlphabeticalTraversal,
+ Box<dyn dirents_sink::Sink<AlphabeticalTraversal>>,
+) -> BoxFuture<'static, Result<Box<dyn dirents_sink::Sealed>, Status>>
+ + Send
+ + Sync
+ + 'static) {
+}