]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc/keyword.rs
New upstream version 1.28.0~beta.14+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'
18// @has foo/keyword.match.html '//section[@id="main"]//div[@class="docblock"]//p' 'this is a test!'
19// @!has foo/index.html '//a/@href' 'foo/index.html'
20// @!has foo/foo/index.html
21// @!has-dir foo/foo
22#[doc(keyword = "match")]
23/// this is a test!
24mod foo{}