Give functions unique names

This commit is contained in:
SlightlyOutOfPhase 2020-09-12 11:24:19 -04:00 committed by GitHub
parent 9c1389418e
commit 8a1288be74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,9 +10,9 @@ pub const fn bloop() -> i32 {
pub struct Struct {}
impl Struct {
// @has 'issue_76501/struct.Struct.html' '//*[@class="method"]' 'pub const fn bloop() -> i32'
// @has 'issue_76501/struct.Struct.html' '//*[@class="method"]' 'pub const fn blurp() -> i32'
/// A useless function that always returns 1.
pub const fn bloop() -> i32 {
pub const fn blurp() -> i32 {
1
}
}