2018-05-28 14:30:01 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2018-06-02 17:45:49 -05:00
|
|
|
#![feature(doc_keyword)]
|
|
|
|
|
2018-05-28 14:30:01 -05:00
|
|
|
// @has foo/index.html '//h2[@id="keywords"]' 'Keywords'
|
|
|
|
// @has foo/index.html '//a[@href="keyword.match.html"]' 'match'
|
|
|
|
// @has foo/keyword.match.html '//a[@class="keyword"]' 'match'
|
2018-09-10 04:27:21 -05:00
|
|
|
// @has foo/keyword.match.html '//span[@class="in-band"]' 'Keyword match'
|
2018-05-28 14:30:01 -05:00
|
|
|
// @has foo/keyword.match.html '//section[@id="main"]//div[@class="docblock"]//p' 'this is a test!'
|
2018-06-02 17:48:17 -05:00
|
|
|
// @!has foo/index.html '//a/@href' 'foo/index.html'
|
|
|
|
// @!has foo/foo/index.html
|
|
|
|
// @!has-dir foo/foo
|
2018-05-28 14:30:01 -05:00
|
|
|
#[doc(keyword = "match")]
|
|
|
|
/// this is a test!
|
|
|
|
mod foo{}
|