]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc/intra-links-anchors.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / rustdoc / intra-links-anchors.rs
CommitLineData
60c5eb7d
XL
1/// I want...
2///
3/// # Anchor!
4pub struct Something;
5
6// @has intra_links_anchors/struct.SomeOtherType.html
7// @has - '//a/@href' '../intra_links_anchors/struct.Something.html#Anchor!'
8
9/// I want...
10///
11/// To link to [Something#Anchor!]
12pub struct SomeOtherType;