about summary refs log tree commit diff
path: root/src/test/rustdoc/issue-66159.rs
AgeCommit message (Collapse)AuthorLines
2019-12-09compiletest: add aux-crate directiveEric Huss-2/+1
2019-11-26Fix spelling typosBrian Wignall-1/+1
2019-11-23rustdoc: Mark `--extern-private` as unstableOliver Middleton-0/+1
It's not even stable in rustc so it shouldn't be stable in rustdoc.
2019-11-08rustdoc: Deliberately load extern crates before processing docsDaniel Silverstone-0/+10
In order that we can successfully later resolve paths in crates which weren't loaded as a result of merely parsing the crate we're documenting, we force the resolution of the path to each crate before cloning the resolver to use later. Closes #66159 Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>