-
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(module: &Module) -> impl Iterator<Item = Vec<&()>> {
modules()
.iter()
.flat_map(locate_tests)
.for_each(|mut x| {
x.push(());
});
[].into_iter()
}
fn main() {}
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