summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/trait-hidden-method.rs
blob: ae7ef47e1d4deaa24980d60beb99dcbf5ed38906 (plain)
1
2
3
4
5
6
7
8
9
10
11
// #107983 - testing that `__iterator_get_unchecked` isn't suggested
// HELP included so that compiletest errors on the bad suggestion
pub fn i_can_has_iterator() -> impl Iterator<Item = u32> {
    //~^ ERROR expected `Box<dyn Iterator>`
    //~| HELP consider constraining the associated type
    Box::new(1..=10) as Box<dyn Iterator>
    //~^ ERROR the value of the associated type `Item`
    //~| HELP specify the associated type
}

fn main() {}