]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/negative-impl.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[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 }