]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/doc-spotlight.rs
Rollup merge of #46174 - stjepang:stabilize-spinloophint, r=sfackler
[rust.git] / src / test / rustdoc / doc-spotlight.rs
1 // Copyright 2017 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 #![feature(doc_spotlight)]
12
13 pub struct Wrapper<T> {
14     inner: T,
15 }
16
17 impl<T: SomeTrait> SomeTrait for Wrapper<T> {}
18
19 #[doc(spotlight)]
20 pub trait SomeTrait {
21     // @has doc_spotlight/trait.SomeTrait.html
22     // @has - '//code[@class="content"]' 'impl<T: SomeTrait> SomeTrait for Wrapper<T>'
23     fn wrap_me(self) -> Wrapper<Self> where Self: Sized {
24         Wrapper {
25             inner: self,
26         }
27     }
28 }
29
30 pub struct SomeStruct;
31 impl SomeTrait for SomeStruct {}
32
33 impl SomeStruct {
34     // @has doc_spotlight/struct.SomeStruct.html
35     // @has - '//code[@class="content"]' 'impl SomeTrait for SomeStruct'
36     // @has - '//code[@class="content"]' 'impl<T: SomeTrait> SomeTrait for Wrapper<T>'
37     pub fn new() -> SomeStruct {
38         SomeStruct
39     }
40 }
41
42 // @has doc_spotlight/fn.bare_fn.html
43 // @has - '//code[@class="content"]' 'impl SomeTrait for SomeStruct'
44 pub fn bare_fn() -> SomeStruct {
45     SomeStruct
46 }