rust/tests/ui/let-else/issue-102317.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
362 B
Rust
Raw Normal View History

// issue #102317
2022-09-30 13:04:03 +00:00
//@ build-pass
//@ compile-flags: --edition 2021 -C opt-level=3 -Zvalidate-mir
struct SegmentJob;
impl Drop for SegmentJob {
fn drop(&mut self) {}
}
pub async fn run() -> Result<(), ()> {
let jobs = Vec::<SegmentJob>::new();
let Some(_job) = jobs.into_iter().next() else {
return Ok(())
};
Ok(())
}
fn main() {}