You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running cargo doc, rustc panics if disk is full. Not a huge issue, just an invalid call of .unwrap() and since the message says it's a bug, I'm filling a report.
Error message (with removed file path):
error: internal compiler error: unexpected panic
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
thread 'rustc' panicked at 'failed to generate documentation: Error { file: <path removed>", error: Error { repr: Os { code: 28, message: "No space left on device" } } }', /checkout/src/libcore/result.rs:859
note: Run with `RUST_BACKTRACE=1` for a backtrace.
emit error when doc generation fails
Fixes#41813.
The diagnostic looks something like this:
```
error: couldn't generate documentation: No space left on device (os error 28)
|
= note: failed to create or modify "/path/to/crate/target/doc/src/lazycell"
```
When running cargo doc, rustc panics if disk is full. Not a huge issue, just an invalid call of
.unwrap()
and since the message says it's a bug, I'm filling a report.Error message (with removed file path):
Might be related to #20438 somehow?
The text was updated successfully, but these errors were encountered: