﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
5126	Type of constants in the NF	Rüdiger Franke	Per Östlund	"See the following example:
{{{#!mo
  model m
    input Real a(start = 1);
    output Real b;
  equation
    b = min(a, 100);
  end m;
}}}
The old frontend (`omc`) generates:
{{{#!mo
class m
  input Real a(start = 1.0);
  output Real b;
equation
  b = min(a, 100.0);
end m;
}}}
The new frontend (`omc -d=newInst`) generates:
{{{#!mo
class m
  input Real a(start = 1.0);
  output Real b;
equation
  b = min(a, 100);
end m;
}}}
This generates problems during C++ compilation, because there is no template for `min(double&, int)`.

Who is right and who should fix it?"	defect	closed	high	2.0.0	New Instantiation		fixed		Peter Fritzson
