-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a167435
commit c156773
Showing
2 changed files
with
32 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,17 @@ | ||
#![feature(type_alias_impl_trait)] | ||
|
||
pub trait TraitWithAssoc { | ||
type Assoc; | ||
} | ||
|
||
pub type Foo<V> = impl Trait<V::Assoc>; | ||
//~^ ERROR | ||
//~^^ ERROR | ||
|
||
pub trait Trait<U> {} | ||
|
||
impl<W> Trait<W> for () {} | ||
|
||
pub fn foo_desugared<T: TraitWithAssoc>(_: T) -> Foo<T> { | ||
() | ||
} |
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,15 @@ | ||
error[E0220]: associated type `Assoc` not found for `V` | ||
--> $DIR/issue-96287.rs:7:33 | ||
| | ||
LL | pub type Foo<V> = impl Trait<V::Assoc>; | ||
| ^^^^^ there is a similarly named associated type `Assoc` in the trait `TraitWithAssoc` | ||
|
||
error[E0220]: associated type `Assoc` not found for `V` | ||
--> $DIR/issue-96287.rs:7:33 | ||
| | ||
LL | pub type Foo<V> = impl Trait<V::Assoc>; | ||
| ^^^^^ there is a similarly named associated type `Assoc` in the trait `TraitWithAssoc` | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0220`. |