Skip to content

Commit c85529e

Browse files
committed
Add auto trait leakage TAIT test that should work but currently doesn't
1 parent d0e08df commit c85529e

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#![feature(type_alias_impl_trait)]
2+
#![allow(dead_code)]
3+
4+
// FIXME This should compile, but it currently doesn't
5+
6+
mod m {
7+
type Foo = impl std::fmt::Debug;
8+
//~^ ERROR: cycle detected when computing type of `m::Foo::{opaque#0}` [E0391]
9+
10+
pub fn foo() -> Foo {
11+
22_u32
12+
}
13+
14+
pub fn bar() {
15+
is_send(foo());
16+
}
17+
18+
fn is_send<T: Send>(_: T) {}
19+
}
20+
21+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
error[E0391]: cycle detected when computing type of `m::Foo::{opaque#0}`
2+
--> $DIR/auto-trait-leakage3.rs:7:16
3+
|
4+
LL | type Foo = impl std::fmt::Debug;
5+
| ^^^^^^^^^^^^^^^^^^^^
6+
|
7+
note: ...which requires type-checking `m::bar`...
8+
--> $DIR/auto-trait-leakage3.rs:14:5
9+
|
10+
LL | pub fn bar() {
11+
| ^^^^^^^^^^^^
12+
= note: ...which requires evaluating trait selection obligation `impl std::fmt::Debug: std::marker::Send`...
13+
= note: ...which again requires computing type of `m::Foo::{opaque#0}`, completing the cycle
14+
note: cycle used when checking item types in module `m`
15+
--> $DIR/auto-trait-leakage3.rs:6:1
16+
|
17+
LL | mod m {
18+
| ^^^^^
19+
20+
error: aborting due to previous error
21+
22+
For more information about this error, try `rustc --explain E0391`.

0 commit comments

Comments
 (0)