]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/source/issue-3508.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / source / 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(
12 /* this comment is deleted */
13 ),
14{
15}
16
17fn bar(
18 bar2: impl Fn(
19 // this comment is deleted
20 ),
21) {
22}
23
24fn bar_block(
25 bar2: impl Fn(
26 /* this comment is deleted */
27 ),
28) {
29}