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.

22 lines
365 B
Rust
Raw Normal View History

// issue #102317
2022-09-30 21:04:03 +08:00
//@ build-pass
//@ compile-flags: -C opt-level=3 -Zvalidate-mir
//@ edition: 2021
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() {}