-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
from-craterA regression found via a crater run, not part of our test suiteA regression found via a crater run, not part of our test suite
Description
It's related to the fact that the Iterator
is higher-ranked.
struct Module;
fn modules() -> Vec<Module> {
todo!()
}
fn locate_tests<'a>(module: &'a Module) -> impl Iterator<Item = Vec<&'a ()>> {
modules()
.iter()
.flat_map(locate_tests)
.for_each(|mut x| {
x.push(&());
});
[].into_iter()
}
Metadata
Metadata
Assignees
Labels
from-craterA regression found via a crater run, not part of our test suiteA regression found via a crater run, not part of our test suite
Type
Projects
Status
unknown