model FirstOrder
  parameter Real c;
  Real x;
equation
  connect(c, x);
  1 = c;
  (5 + 4) = x;
end FirstOrder;