about summary refs log tree commit diff
path: root/src/test/rustdoc/empty-section.rs
AgeCommit message (Collapse)AuthorLines
2019-06-20rustdoc: generate implementors for all auto traitsSimonas Kazlauskas-0/+3
Previously we would only generate a list of synthetic implementations for two well known traits – Send and Sync. With this patch all the auto traits known to rustc are considered. This includes such traits like Unpin and user’s own traits. Sadly the implementation still iterates through the list of crate items and checks them against the traits, which for non-std crates containing their own auto-traits will still not include types defined in std/core. It is an improvement nontheless.
2018-12-25Remove licensesMark Rousskov-10/+0
2018-10-05Fix empty-section.rs testPhilip Munksgaard-1/+1
The Auto Trait Implementation section is not wrapped in a `synthetic-implementations` class. In fact, it is wrapped in a `synthetic-implementations` id. However, we can generalize and completely remove the `synthetic-implementations` requirement. We just have to verify that there's no mention of "Auto Trait Implementations" anywhere.
2018-03-09Remove auto trait implementation section when emptyGuillaume Gomez-0/+20