]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/smoke.rs
Auto merge of #24268 - pnkfelix:regression-tests, r=alexcrichton
[rust.git] / src / test / rustdoc / smoke.rs
1 // Copyright 2014 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 // @has smoke/index.html
12
13 //! Very docs
14
15 // @has smoke/bar/index.html
16 pub mod bar {
17
18     /// So correct
19     // @has smoke/bar/baz/index.html
20     pub mod baz {
21         /// Much detail
22         // @has smoke/bar/baz/fn.baz.html
23         pub fn baz() { }
24     }
25
26     /// *wow*
27     // @has smoke/bar/trait.Doge.html
28     pub trait Doge { fn dummy(&self) { } }
29
30     // @has smoke/bar/struct.Foo.html
31     pub struct Foo { x: isize, y: usize }
32
33     // @has smoke/bar/fn.prawns.html
34     pub fn prawns((a, b): (isize, usize), Foo { x, y }: Foo) { }
35 }