about summary refs log tree commit diff
path: root/src/test/rustdoc/keyword.rs
blob: c721c024468ddf2b75e8ee6b608b9217eba9ecad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![crate_name = "foo"]

#![feature(doc_keyword)]

// @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'
// @has foo/keyword.match.html '//span[@class="in-band"]' 'Keyword match'
// @has foo/keyword.match.html '//section[@id="main"]//div[@class="docblock"]//p' 'this is a test!'
// @has foo/index.html '//a/@href' '../foo/index.html'
// @!has foo/foo/index.html
// @!has-dir foo/foo
#[doc(keyword = "match")]
/// this is a test!
mod foo{}