Skip to content

Commit 375d8f1

Browse files
committed
Sanity check that we actually flush all buffers
1 parent d9deaf4 commit 375d8f1

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

compiler/rustc_errors/src/emitter.rs

+9
Original file line numberDiff line numberDiff line change
@@ -2617,6 +2617,15 @@ impl Write for Buffy {
26172617
}
26182618
}
26192619

2620+
impl Drop for Buffy {
2621+
fn drop(&mut self) {
2622+
if !self.buffer.is_empty() {
2623+
self.flush().unwrap();
2624+
panic!("buffers need to be flushed in order to print their contents");
2625+
}
2626+
}
2627+
}
2628+
26202629
impl WriteColor for Buffy {
26212630
fn supports_color(&self) -> bool {
26222631
self.buffer.supports_color()

0 commit comments

Comments
 (0)