rust/tests/rustdoc-ui/issues/issue-96287.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
263 B
Rust
Raw Normal View History

2023-01-02 07:29:56 -06:00
#![feature(type_alias_impl_trait)]
pub trait TraitWithAssoc {
type Assoc;
}
pub type Foo<V> = impl Trait<V::Assoc>;
//~^ ERROR
//~| ERROR
2023-01-02 07:29:56 -06:00
pub trait Trait<U> {}
impl<W> Trait<W> for () {}
pub fn foo_desugared<T: TraitWithAssoc>(_: T) -> Foo<T> {
()
}