mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
21 lines
360 B
Rust
21 lines
360 B
Rust
// issue #102317
|
|
// 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() {}
|