]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc-ui/coverage/exotic.rs
Update unsuspicious file list
[rustc.git] / src / test / rustdoc-ui / coverage / exotic.rs
CommitLineData
532ac7d7 1// compile-flags:-Z unstable-options --show-coverage
f9f354fc 2// check-pass
532ac7d7 3
3c0e092e 4#![feature(rustdoc_internals)]
532ac7d7
XL
5
6//! the features only used in std also have entries in the table, so make sure those get pulled out
7//! properly as well
8
9/// woo, check it out, we can write our own primitive docs lol
10#[doc(primitive="unit")]
11mod prim_unit {}
12
13/// keywords? sure, pile them on
14#[doc(keyword="where")]
15mod where_keyword {}