-
Notifications
You must be signed in to change notification settings - Fork 0
Open
rust-lang/rust
#147249Labels
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
causing this test to fail with the new solver
#[derive(Clone, Copy)]
struct FileSystem;
impl FileSystem {
fn build<T>(self, commands: T) -> Option<impl Sized> {
match false {
true => Some(commands),
false => {
drop(match self.build::<_>(commands) {
Some(x) => x,
None => return None,
});
panic!()
},
}
}
}
i don't understand how fallback works :3
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
in progress