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
For example, generating documentation for this code:
mod traits {pubtraitTraitA{fna();}pubtraitTraitB{fnb();}}pubuse traits::{TraitAas _,TraitBas _};
results in two traits named _, which is correct, but, no matter which one you click on, you'll only ever see the a() xor the b() function since rustdoc tries to write the documentation for both traits to the same file. At least, I think that's what's happening.
For example, generating documentation for this code:
results in two traits named
_
, which is correct, but, no matter which one you click on, you'll only ever see thea()
xor theb()
function since rustdoc tries to write the documentation for both traits to the same file. At least, I think that's what's happening.Meta
rustc --version --verbose
:The text was updated successfully, but these errors were encountered: