/* divisionBad.cvl: denominator in division could be 0, * so error should be reported. */ $input double x; $input double y; // could be 0 void main() { double z = x/y; $assert y*z==x; }