]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/negative-impl.rs
Rollup merge of #85054 - jethrogb:jb/sgx-inline-asm, r=Amanieu
[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 }