﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1750	inheritance in protected section not propagated to components	Peter Aronsson	Peter Aronsson	"Consider the following model:


{{{
model ABC
  model AB
    Real x1 = 2*time+1;
    Real x2 = 2*time+2;
  end AB;
  Real a = x1;
  protected extends AB;
  Real b=x2;
end ABC;
}}}
It's flat class is: 

{{{
class ABC
  Real x1 = 1.0 + 2.0 * time;
  Real x2 = 2.0 + 2.0 * time;
  Real a = x1;
  protected Real b = x2;
end ABC;
}}}
But x1 and x2 should be protected too, since they are inherited in a protected section. (See Modelica Language specification v3.1 section 7.1.2)."	defect	closed	critical	1.9.0	Frontend		fixed		Peter Aronsson
