﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1010	Compiler should report a syntax error on := in an equation section	Adrian Pop	Adrian Pop	"The compiler should report a syntax error at 
{{{y[1] := 0; }}}

as it is in an equation section and := are not allowed there.
{{{model Bug
  parameter Integer nin = 2;
  parameter Integer nout = 2;
  parameter Real A[:,:] = [1, 2; 3, 4];
  Real u[nin];
  Real y[nout];
equation
  u = {1,2};
  y = A*u;
  y[1] := 0;
end Bug; }}}"	defect	closed	high				fixed		Adrian Pop Adrian Pop
