2020-09-12 10:52:12 -04:00
|
|
|
// @has 'issue_76501/fn.bloop.html' '//pre' 'pub const fn bloop() -> i32'
|
|
|
|
/// A useless function that always returns 1.
|
|
|
|
pub const fn bloop() -> i32 {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A struct.
|
|
|
|
pub struct Struct {}
|
|
|
|
|
|
|
|
impl Struct {
|
2023-01-28 16:35:02 -07:00
|
|
|
// @has 'issue_76501/struct.Struct.html' '//*[@class="method"]' \
|
2021-06-02 10:59:10 +02:00
|
|
|
// 'pub const fn blurp() -> i32'
|
2020-09-12 10:52:12 -04:00
|
|
|
/// A useless function that always returns 1.
|
2020-09-12 11:24:19 -04:00
|
|
|
pub const fn blurp() -> i32 {
|
2020-09-12 10:52:12 -04:00
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|