mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
7 lines
98 B
Rust
7 lines
98 B
Rust
use std::fs::File;
|
|||
|
|||
fn drop_file() {
|
|||
let f = File::open("/tmp/test").unwrap();
|
|||
drop(f);
|
|||
}
|