8b2b343b23
This fixes the errors occuring while running the ui tests
8 lines
124 B
Rust
8 lines
124 B
Rust
// run-rustfix
|
|
|
|
fn main() {
|
|
println!("Testing option_take_on_temporary");
|
|
let x = Some(3);
|
|
x.as_ref().take();
|
|
}
|