about summary refs log tree commit diff
path: root/src/test/run-make/rustdoc-recursion/foo.rs
AgeCommit message (Collapse)AuthorLines
2015-04-07test: Move all run-make rustdoc tests to test/rustdocAlex Crichton-24/+0
2015-03-15Strip all leading/trailing newlinesTamir Duberstein-1/+0
2014-09-23rustdoc: Don't try to inline the crate rootAlex Crichton-1/+1
Fixes other test cases found in #16274
2014-09-23rustdoc: Prevent infinite recursion when inliningAlex Crichton-0/+25
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