Builtins::Unguarded_Guard()
Usage
This Exception is thrown when a shorthand syntax is used and an unexpected case occurs.
Int mag(Int x) | x<0 = -x;
| x>0 = x;
//Calling this function with x==0 throws this exception
This Exception is thrown when a shorthand syntax is used and an unexpected case occurs.
Int mag(Int x) | x<0 = -x;
| x>0 = x;
//Calling this function with x==0 throws this exception