Update if2.rs

This commit is contained in:
Medinand PANDI 2024-06-06 07:11:26 +02:00 committed by GitHub
parent d140d49b61
commit 49a9972e98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,10 +11,11 @@ pub fn foo_if_fizz(fizzish: &str) -> &str {
if fizzish == "fizz" {
"foo"
} else {
1
"bar"
}
}
// No test changes needed!
#[cfg(test)]
mod tests {