Add auto trait that shouldn't leak TAIT test

This commit is contained in:
Santiago Pastorino 2021-08-27 21:59:49 -03:00
parent 5ac46d7bd8
commit d0e08dffcf
No known key found for this signature in database
GPG Key ID: 8131A24E0C79EFAF
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,19 @@
#![feature(type_alias_impl_trait)]
#![allow(dead_code)]
mod m {
use std::rc::Rc;
type Foo = impl std::fmt::Debug;
pub fn foo() -> Foo {
Rc::new(22_u32)
}
}
fn is_send<T: Send>(_: T) {}
fn main() {
is_send(m::foo());
//~^ ERROR: `Rc<u32>` cannot be sent between threads safely [E0277]
}

View File

@ -0,0 +1,20 @@
error[E0277]: `Rc<u32>` cannot be sent between threads safely
--> $DIR/auto-trait-leakage2.rs:17:5
|
LL | type Foo = impl std::fmt::Debug;
| -------------------- within this `impl Debug`
...
LL | is_send(m::foo());
| ^^^^^^^ `Rc<u32>` cannot be sent between threads safely
|
= help: within `impl Debug`, the trait `Send` is not implemented for `Rc<u32>`
= note: required because it appears within the type `impl Debug`
note: required by a bound in `is_send`
--> $DIR/auto-trait-leakage2.rs:14:15
|
LL | fn is_send<T: Send>(_: T) {}
| ^^^^ required by this bound in `is_send`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.