]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/intra-link-self.rs
Auto merge of #52572 - davidtwco:issue-51027, r=nikomatsakis
[rust.git] / src / test / rustdoc / intra-link-self.rs
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 // @has foo/index.html '//a/@href' '../foo/struct.Foo.html#method.new'
14 // @has foo/struct.Foo.html '//a/@href' '../foo/struct.Foo.html#method.new'
15
16 /// Use [`new`] to create a new instance.
17 ///
18 /// [`new`]: Self::new
19 pub struct Foo;
20
21 impl Foo {
22     pub fn new() -> Self {
23         unimplemented!()
24     }
25 }
26
27 // @has foo/index.html '//a/@href' '../foo/struct.Bar.html#method.new2'
28 // @has foo/struct.Bar.html '//a/@href' '../foo/struct.Bar.html#method.new2'
29
30 /// Use [`new2`] to create a new instance.
31 ///
32 /// [`new2`]: Self::new2
33 pub struct Bar;
34
35 impl Bar {
36     pub fn new2() -> Self {
37         unimplemented!()
38     }
39 }