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
While the crate being empty (externally, due to all private items) means that rustdoc is pretty useless to run, I don't think it should fail into an infinite redirect, which is just confusing.
This doesn't happen if I replace Option with a struct defined within the same crate.
The text was updated successfully, but these errors were encountered:
While looking for a different rustdoc bug, I found that the following
lib.rs
(
cargo new foo
followed by adding a trait and an impl to thelib.rs
)produces the following
doc/lib/index.html
:which is just an infinite redirect.
While the crate being empty (externally, due to all private items) means that rustdoc is pretty useless to run, I don't think it should fail into an infinite redirect, which is just confusing.
This doesn't happen if I replace
Option
with a struct defined within the same crate.The text was updated successfully, but these errors were encountered: