2020-09-12 09:52:12 -05: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 17:35:02 -06:00
|
|
|
// @has 'issue_76501/struct.Struct.html' '//*[@class="method"]' \
|
2021-06-02 03:59:10 -05:00
|
|
|
// 'pub const fn blurp() -> i32'
|
2020-09-12 09:52:12 -05:00
|
|
|
/// A useless function that always returns 1.
|
2020-09-12 10:24:19 -05:00
|
|
|
pub const fn blurp() -> i32 {
|
2020-09-12 09:52:12 -05:00
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|