about summary refs log tree commit diff
path: root/src/test/rustdoc/issue-18199.rs
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2015-11-25Remove all uses of `#[staged_api]`Vadim Petrochenkov-1/+0
2015-11-18Add missing annotations and some testsVadim Petrochenkov-0/+1
2015-04-07rustdoc: Allowing specifying attrs for doctestsAlex Crichton-0/+19
This adds support in rustdoc to blanket apply crate attributes to all doc tests for a crate at once. The syntax for doing this is: #![doc(test(attr(...)))] Each meta item in `...` will be applied to each doctest as a crate attribute. cc #18199