Copy-paste fix pattern
fn main() {
assert(player_health >= 0, "health cannot be negative")
}
ClosedBit Docs
ClosedBit error docs
Assertion failed. A program assertion evaluated to false.
A program assertion evaluated to false.
Fix the condition or handle the invalid state before the assertion.
fn main() {
assert(player_health >= 0, "health cannot be negative")
}