]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/target/issue-4245.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / target / issue-4245.rs
CommitLineData
f20569fa
XL
1fn a(
2 a: & // Comment
3 // Another comment
4 'a File,
5) {
6}
7
8fn b(b: & /* Another Comment */ 'a File) {}
9
10fn c(c: &'a /*Comment */ mut /*Comment */ File) {}
11
12fn d(
13 c: & // Comment
14 'b // Multi Line
15 // Comment
16 mut // Multi Line
17 // Comment
18 File,
19) {
20}
21
22fn e(
23 c: & // Comment
24 File,
25) {
26}
27
28fn d(
29 c: & // Comment
30 mut // Multi Line
31 // Comment
32 File,
33) {
34}