4 lines
104 B
Rust
4 lines
104 B
Rust
pub fn with_dir(mut foo: impl FnMut(tempdir::TempDir)) {
|
|
foo(tempdir::TempDir::new("").unwrap());
|
|
}
|