about summary refs log tree commit diff
path: root/src/test/rustdoc/issue-19190-3.rs
AgeCommit message (Collapse)AuthorLines
2019-04-22Remove double trailing newlinesvarkor-1/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2017-11-20Make rustdoc not include self-by-value methods from Deref targetFlorian Hartwig-2/+2
2015-05-25Rustdoc: ignore deref-inherited static methodsAdolfo OchagavĂ­a-0/+3
Fixes #24575
2015-04-22Replace ignore-android with ignore-cross-compile in rustdoc testsRyan Prichard-1/+1
The problem is that rustdoc searches for external crates using the host triple, not the target triple. It's actually unclear to me whether this is correct behavior or not, but it is necessary to get cross-compiled tests working.
2015-04-16rustdoc: Inline methods inhereted through DerefAlex Crichton-0/+35
Whenever a type implements Deref, rustdoc will now add a section to the "methods available" sections for "Methods from Deref<Target=Foo>", listing all the inherent methods of the type `Foo`. Closes #19190