mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
14 lines
362 B
Rust
14 lines
362 B
Rust
|
fn main() {
|
||
|
println!("Testing non erroneous option_take_on_temporary");
|
||
|
let mut option = Some(1);
|
||
|
let _ = Box::new(move || option.take().unwrap());
|
||
|
|
||
|
println!("Testing non erroneous option_take_on_temporary");
|
||
|
let x = Some(3);
|
||
|
x.as_ref();
|
||
|
|
||
|
println!("Testing erroneous option_take_on_temporary");
|
||
|
let x = Some(3);
|
||
|
x.as_ref();
|
||
|
}
|