]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/negative-impl.rs
Merge commit 'd822110d3b5625b9dc80ccc442e06fc3cc851d76' into clippyup
[rust.git] / src / tools / rustfmt / tests / target / negative-impl.rs
1 impl !Display for JoinHandle {}
2
3 impl !Box<JoinHandle> {}
4
5 impl !std::fmt::Display
6     for JoinHandle<T: std::future::Future + std::marker::Send + std::marker::Sync>
7 {
8 }
9
10 impl
11     !JoinHandle<T: std::future::Future<Output> + std::marker::Send + std::marker::Sync + 'static>
12         + 'static
13 {
14 }