blob: d2a345231eb438687fe02d40b38bc2c9edfca400 [file] [log] [blame]
struct List {
data: Vec<String>,
}
impl List {
fn started_with<'a>(&'a self, prefix: &'a str) -> impl Iterator<Item=&'a str> {
self.data.iter().filter(|s| s.starts_with(prefix)).map(|s| s.as_ref())
//~^ ERROR E0373
}
}
fn main() {}