Skip to content

Commit

Permalink
Add regression test for #96287
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Jan 2, 2023
1 parent a167435 commit c156773
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/test/rustdoc-ui/issue-96287.rs
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> {
()
}
15 changes: 15 additions & 0 deletions src/test/rustdoc-ui/issue-96287.stderr
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`.

0 comments on commit c156773

Please sign in to comment.