rust/tests/ui/nll/issue-48623-generator.rs
2023-01-11 09:32:08 +00:00

19 lines
333 B
Rust

// run-pass
#![allow(path_statements)]
#![allow(dead_code)]
#![feature(generators, generator_trait)]
struct WithDrop;
impl Drop for WithDrop {
fn drop(&mut self) {}
}
fn reborrow_from_generator(r: &mut ()) {
let d = WithDrop;
move || { d; yield; &mut *r }; //~ WARN unused generator that must be used
}
fn main() {}