mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
16 lines
308 B
Rust
16 lines
308 B
Rust
use std::{fs, io::*};
|
|
use std::collections::HashMap;
|
|
|
|
type Handle = BufWriter<fs::File>;
|
|
struct Thing(HashMap<String, Handle>);
|
|
|
|
impl Thing {
|
|
pub fn die_horribly(&mut self) {
|
|
for v in self.0.values() {
|
|
v.flush();
|
|
//~^ ERROR cannot borrow
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|