]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc/issue-76501.rs
New upstream version 1.50.0+dfsg1
[rustc.git] / src / test / rustdoc / issue-76501.rs
CommitLineData
1b1a35ee
XL
1// @has 'issue_76501/fn.bloop.html' '//pre' 'pub const fn bloop() -> i32'
2/// A useless function that always returns 1.
3pub const fn bloop() -> i32 {
4 1
5}
6
7/// A struct.
8pub struct Struct {}
9
10impl Struct {
11 // @has 'issue_76501/struct.Struct.html' '//*[@class="method"]' 'pub const fn blurp() -> i32'
12 /// A useless function that always returns 1.
13 pub const fn blurp() -> i32 {
14 1
15 }
16}