]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/target/issue-4398.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / target / issue-4398.rs
CommitLineData
f20569fa
XL
1impl Struct {
2 /// Documentation for `foo`
3 #[rustfmt::skip] // comment on why use a skip here
4 pub fn foo(&self) {}
5}
6
7impl Struct {
8 /// Documentation for `foo`
9 #[rustfmt::skip] // comment on why use a skip here
10 pub fn foo(&self) {}
11}
12
13/// Documentation for `Struct`
14#[rustfmt::skip] // comment
15impl Struct {
16 /// Documentation for `foo`
17 #[rustfmt::skip] // comment on why use a skip here
18 pub fn foo(&self) {}
19}