Skip to content

Commit

Permalink
Rollup merge of rust-lang#88408 - spastorino:inference-cycle-tait-tes…
Browse files Browse the repository at this point in the history
…t, r=oli-obk

Add inference cycle TAIT test

r? `@oli-obk`

Related to rust-lang#86727
  • Loading branch information
m-ou-se authored Aug 31, 2021
2 parents 5eeeb0b + 1ba86f2 commit b490f35
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/test/ui/type-alias-impl-trait/inference-cycle.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#![feature(type_alias_impl_trait)]
#![allow(dead_code)]

mod m {
type Foo = impl std::fmt::Debug;
//~^ ERROR: cycle detected when computing type of `m::Foo::{opaque#0}` [E0391]

// Cycle: error today, but it'd be nice if it eventually worked

pub fn foo() -> Foo {
is_send(bar())
}

pub fn bar() {
is_send(foo()); // Today: error
}

fn baz() {
let f: Foo = 22_u32;
//~^ ERROR: mismatched types [E0308]
}

fn is_send<T: Send>(_: T) {}
}

fn main() {}
37 changes: 37 additions & 0 deletions src/test/ui/type-alias-impl-trait/inference-cycle.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
error[E0391]: cycle detected when computing type of `m::Foo::{opaque#0}`
--> $DIR/inference-cycle.rs:5:16
|
LL | type Foo = impl std::fmt::Debug;
| ^^^^^^^^^^^^^^^^^^^^
|
note: ...which requires type-checking `m::bar`...
--> $DIR/inference-cycle.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/inference-cycle.rs:4:1
|
LL | mod m {
| ^^^^^

error[E0308]: mismatched types
--> $DIR/inference-cycle.rs:19:22
|
LL | type Foo = impl std::fmt::Debug;
| -------------------- the expected opaque type
...
LL | let f: Foo = 22_u32;
| --- ^^^^^^ expected opaque type, found `u32`
| |
| expected due to this
|
= note: expected opaque type `impl Debug`
found type `u32`

error: aborting due to 2 previous errors

Some errors have detailed explanations: E0308, E0391.
For more information about an error, try `rustc --explain E0308`.

0 comments on commit b490f35

Please # to comment.