mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
23 lines
373 B
Rust
23 lines
373 B
Rust
// check-pass
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
struct Outer<T: ?Sized> {
|
|
i: InnerSend<T>,
|
|
}
|
|
|
|
type InnerSend<T: ?Sized> = impl Send;
|
|
|
|
fn constrain<T: ?Sized>() -> InnerSend<T> {
|
|
()
|
|
}
|
|
|
|
trait SendMustNotImplDrop {}
|
|
|
|
#[allow(drop_bounds)]
|
|
impl<T: ?Sized + Send + Drop> SendMustNotImplDrop for T {}
|
|
|
|
impl<T: ?Sized> SendMustNotImplDrop for Outer<T> {}
|
|
|
|
fn main() {}
|