summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/paths.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/tools/rustfmt/tests/target/paths.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/rustfmt/tests/target/paths.rs')
-rw-r--r--src/tools/rustfmt/tests/target/paths.rs28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/paths.rs b/src/tools/rustfmt/tests/target/paths.rs
new file mode 100644
index 000000000..0d2ba797e
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/paths.rs
@@ -0,0 +1,28 @@
+// rustfmt-normalize_comments: true
+
+fn main() {
+ let constellation_chan =
+ Constellation::<layout::layout_task::LayoutTask, script::script_task::ScriptTask>::start(
+ compositor_proxy,
+ resource_task,
+ image_cache_task,
+ font_cache_task,
+ time_profiler_chan,
+ mem_profiler_chan,
+ devtools_chan,
+ storage_task,
+ supports_clipboard,
+ );
+
+ Quux::<
+ ParamOne, // Comment 1
+ ParamTwo, // Comment 2
+ >::some_func();
+
+ <*mut JSObject>::relocate(entry);
+
+ let x: Foo<A>;
+ let x: Foo/*::*/<A>;
+}
+
+fn op(foo: Bar, key: &[u8], upd: Fn(Option<&memcache::Item>, Baz) -> Result) -> MapResult {}