M0116Division or modulo by a constant zero
Reported by the compiler as an error or warning.
mettle explain M0116
The divisor is the literal zero, so the operation traps the moment it executes. This is a hard error: no input can make it work.
Fix: correct the constant, or guard the divisor when it is meant to be a variable.