]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/target/issue-3508.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / target / issue-3508.rs
CommitLineData
f20569fa
XL
1fn foo<F>(foo2: F)
2where
3 F: Fn(
4 // this comment is deleted
5 ),
6{
7}
8
9fn foo_block<F>(foo2: F)
10where
11 F: Fn(/* this comment is deleted */),
12{
13}
14
15fn bar(
16 bar2: impl Fn(
17 // this comment is deleted
18 ),
19) {
20}
21
22fn bar_block(bar2: impl Fn(/* this comment is deleted */)) {}