﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1919	Type extending basic type derived array does not work in all cases	Adrian Pop	somebody	"This model does not work
{{{
model Issues
  type 'Orientation$R_lines' 
    type TransformationMatrix = Real[3, 3];
    extends TransformationMatrix;
  end 'Orientation$R_lines';
  parameter 'Orientation$R_lines' R_lines = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
end Issues;
}}}

Funny is that this model works:
{{{
model Issues
  type TransformationMatrix = Real[3, 3];
  type 'Orientation$R_lines' 
    extends TransformationMatrix;
  end 'Orientation$R_lines';
  parameter 'Orientation$R_lines' R_lines = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
end Issues;
}}}
"	defect	closed	high	1.16.0	New Instantiation	trunk	fixed		
