]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/target/issue-4244.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / rustfmt / tests / target / issue-4244.rs
CommitLineData
f20569fa
XL
1pub struct SS {}
2
3pub type A /* A Comment */ = SS;
4
5pub type B // Comment
6 // B
7 = SS;
8
9pub type C
10 /* Comment C */
11 = SS;
12
13pub trait D<T> {
14 type E /* Comment E */ = SS;
15}
16
17type F<'a: 'static, T: Ord + 'static>: Eq + PartialEq
18where
19 T: 'static + Copy, /* x */
20= Vec<u8>;