mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-27 02:53:43 +00:00
The commit adds "associated" to the description of associated types and associated consts, to match the description of associated functions. This increases error message precision and consistency with `AssocKind::fmt`. The commit also notes an imperfection in `AssocKind::fmt`; fixing this imperfection is possible but beyond the scope of this PR.
20 lines
583 B
Rust
20 lines
583 B
Rust
pub trait Iterable {
|
|
type Item<'a>
|
|
where
|
|
Self: 'a;
|
|
|
|
fn iter(&self) -> impl Iterator;
|
|
}
|
|
|
|
impl<'a, I: 'a + Iterable> Iterable for &'a I {
|
|
type Item = u32;
|
|
//~^ ERROR lifetime parameters or bounds on associated type `Item` do not match the trait declaration
|
|
|
|
fn iter(&self) -> impl for<'missing> Iterator<Item = Self::Item<'missing>> {}
|
|
//~^ ERROR binding for associated type `Item` references lifetime `'missing`
|
|
//~| ERROR binding for associated type `Item` references lifetime `'missing`
|
|
//~| ERROR `()` is not an iterator
|
|
}
|
|
|
|
fn main() {}
|