rust/tests/ui/impl-trait/issues/issue-86719.rs

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

14 lines
291 B
Rust
Raw Normal View History

#![feature(impl_trait_in_assoc_type)]
2022-02-17 07:55:58 -06:00
trait Bar {
type E;
}
impl<S> Bar for S {
type E = impl ; //~ ERROR at least one trait must be specified
fn foo() -> Self::E {
//~^ ERROR `foo` is not a member
2022-02-17 07:55:58 -06:00
|_| true //~ ERROR type annotations needed
}
}
fn main() {}