about summary refs log tree commit diff
path: root/src/test/rustdoc/issue-46380-2.rs
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2017-11-30Fix htmldocck namingChristian Duerr-2/+2
After renaming the structs and enums the htmldocck strings still contained the old names. This lead to test failure. These htmldocck tests have been updated to use the proper names of the rust structs and traits.
2017-11-30Hide trait impl with private trait type parameterChristian Duerr-0/+19
Trait's implementations with private type parameters were displayed in the implementing struct's documentation until now. With this change any trait implementation that uses a private type parameter is now hidden in the docs.