﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1042	Inheriting multiple definitions with different type should not work (from MathCore)	krsta	krsta	"The ErrorColor contains a multiple declaration of the red instance. Since they are of different types it should be illegal and not simulate.
{{{
record ColorData
  parameter Real red = 2;
  parameter Real blue = 6;
  Real   green;
end ColorData;

class ErrorColor
  extends ColorData;
  parameter Real blue=6;
  parameter Integer red=2;
equation 
  red + blue + green=10;
end ErrorColor;
}}}"	defect	closed	high				fixed		krsta
