]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-4159.rs
Auto merge of #85597 - 0yoyoyo:fix-issue-71563-remove-redundant-args, r=petrochenkov
[rust.git] / src / tools / rustfmt / tests / target / issue-4159.rs
1 extern "C" {
2     type A: Ord;
3
4     type A<'a>
5     where
6         'a: 'static;
7
8     type A<T: Ord>
9     where
10         T: 'static;
11
12     type A = u8;
13
14     type A<'a: 'static, T: Ord + 'static>: Eq + PartialEq
15     where
16         T: 'static + Copy,
17     = Vec<u8>;
18 }