forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#88409 - spastorino:autoleakage-tait-test, r…
…=oli-obk Add auto trait leakage TAIT test r? `@oli-obk` Related to rust-lang#86727
- Loading branch information
Showing
5 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// check-pass | ||
|
||
#![feature(type_alias_impl_trait)] | ||
#![allow(dead_code)] | ||
|
||
mod m { | ||
type Foo = impl std::fmt::Debug; | ||
|
||
pub fn foo() -> Foo { | ||
22_u32 | ||
} | ||
} | ||
|
||
fn is_send<T: Send>(_: T) {} | ||
|
||
fn main() { | ||
is_send(m::foo()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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] | ||
} |
20 changes: 20 additions & 0 deletions
20
src/test/ui/type-alias-impl-trait/auto-trait-leakage2.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#![feature(type_alias_impl_trait)] | ||
#![allow(dead_code)] | ||
|
||
// FIXME This should compile, but it currently doesn't | ||
|
||
mod m { | ||
type Foo = impl std::fmt::Debug; | ||
//~^ ERROR: cycle detected when computing type of `m::Foo::{opaque#0}` [E0391] | ||
|
||
pub fn foo() -> Foo { | ||
22_u32 | ||
} | ||
|
||
pub fn bar() { | ||
is_send(foo()); | ||
} | ||
|
||
fn is_send<T: Send>(_: T) {} | ||
} | ||
|
||
fn main() {} |
22 changes: 22 additions & 0 deletions
22
src/test/ui/type-alias-impl-trait/auto-trait-leakage3.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
error[E0391]: cycle detected when computing type of `m::Foo::{opaque#0}` | ||
--> $DIR/auto-trait-leakage3.rs:7:16 | ||
| | ||
LL | type Foo = impl std::fmt::Debug; | ||
| ^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
note: ...which requires type-checking `m::bar`... | ||
--> $DIR/auto-trait-leakage3.rs:14:5 | ||
| | ||
LL | pub fn bar() { | ||
| ^^^^^^^^^^^^ | ||
= note: ...which requires evaluating trait selection obligation `impl std::fmt::Debug: std::marker::Send`... | ||
= note: ...which again requires computing type of `m::Foo::{opaque#0}`, completing the cycle | ||
note: cycle used when checking item types in module `m` | ||
--> $DIR/auto-trait-leakage3.rs:6:1 | ||
| | ||
LL | mod m { | ||
| ^^^^^ | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0391`. |