]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc/keyword.rs
New upstream version 1.31.0~beta.4+dfsg1
[rustc.git] / src / test / rustdoc / keyword.rs
CommitLineData
94b46f34
XL
1// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11#![crate_name = "foo"]
12
13#![feature(doc_keyword)]
14
15// @has foo/index.html '//h2[@id="keywords"]' 'Keywords'
16// @has foo/index.html '//a[@href="keyword.match.html"]' 'match'
17// @has foo/keyword.match.html '//a[@class="keyword"]' 'match'
0bf4aa26 18// @has foo/keyword.match.html '//span[@class="in-band"]' 'Keyword match'
94b46f34
XL
19// @has foo/keyword.match.html '//section[@id="main"]//div[@class="docblock"]//p' 'this is a test!'
20// @!has foo/index.html '//a/@href' 'foo/index.html'
21// @!has foo/foo/index.html
22// @!has-dir foo/foo
23#[doc(keyword = "match")]
24/// this is a test!
25mod foo{}