summary refs log tree commit diff
path: root/src/test/run-make/rustdoc-recursion
AgeCommit message (Collapse)AuthorLines
2015-03-15Strip all leading/trailing newlinesTamir Duberstein-2/+0
2014-09-23rustdoc: Don't try to inline the crate rootAlex Crichton-1/+52
Fixes other test cases found in #16274
2014-09-23rustdoc: Prevent infinite recursion when inliningAlex Crichton-0/+35
Cyclic pub-use chains triggered infinite recursion, and this commit adds a hash set to guard against cyclic recursion. This will cause one of the reexports to render as a `pub use` instead of inlining the documentation. Closes #16274