Rename function in weird-exprs.rs for clarity

This commit is contained in:
Jaro Fietz 2024-01-21 13:47:45 +01:00 committed by GitHub
parent 2d1b2a9906
commit 98f59817c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -238,7 +238,7 @@ fn return_already() -> impl std::fmt::Debug {
}
}
fn cursed_macros() -> impl std::fmt::Debug {
fn fake_macros() -> impl std::fmt::Debug {
loop {
if! {
match! (
@ -283,5 +283,5 @@ pub fn main() {
useful_syntax();
infcx();
return_already();
cursed_macros();
fake_macros();
}