﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1467	Incorrect constant evaluation in case of arrays?	AlexeyLebedev	AlexeyLebedev	"The example
{{{class A
  class B
  Real z = A.y;
  end B;
  constant Real y;
  B[3] b;
end A;

class T
  A[2] a(y = {1,2});
end T;}}}

produces the following:
{{{ class T
  constant Real a[1].y = 1.0;
  Real a[1].b[1].z = 1.0;
  Real a[1].b[2].z = 1.0;
  Real a[1].b[3].z = 1.0;
  constant Real a[2].y = 2.0;
  Real a[2].b[1].z = 1.0;
  Real a[2].b[2].z = 1.0;
  Real a[2].b[3].z = 1.0;
end T;}}}I.e., a.b.z gets a wrong binding."	defect	closed	high		Instantiation		fixed		AlexeyLebedev
