﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1469	Bugs related to division by zero	Martin Sjölund	Martin Sjölund	"{{{#!mo
class A
  constant Real x = 0;
  Real r = x/x;
end A;
}}}
Gives
{{{r = 0.0}}}
Both wrong result, and no assertion added.
{{{#!mo
class A
  Real x = 0;
  Real r = x/x;
end A;
}}}
Gives
{{{r = 1.0}}}
No assertion is added."	defect	closed	high	Future	Backend		wontfix		Martin Sjölund Patrick Täuber
