]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/source/issue-4245.rs
Rollup merge of #107166 - petrochenkov:nooptable, r=oli-obk
[rust.git] / src / tools / rustfmt / tests / source / issue-4245.rs
1
2
3 fn a(a: & // Comment  
4         // Another comment
5     'a File) {}
6
7 fn b(b: & /* Another Comment */'a File) {}
8
9 fn c(c: &'a /*Comment */ mut /*Comment */ File){}
10
11 fn d(c: & // Comment
12 'b // Multi Line
13 // Comment
14 mut // Multi Line
15 // Comment
16 File
17 ) {}
18
19 fn e(c: &// Comment
20 File) {}
21
22 fn d(c: &// Comment
23 mut // Multi Line
24 // Comment
25 File
26 ) {}