﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2107	Protected elements not protected	jwharington@…	probably noone	"Access control via protected keyword is ignored, violating modelica language 3.2 spec section 4.1 ""Access Control - Public and Protected Elements"".

Example follows.  This compiles and runs fine, it should error out.

{{{#mo
class protectedvar
  
  class Container
    protected 
    Boolean youcanttouchthis (start = true);
    Real youcanttouchthat;

  end Container;

  Container container;

algorithm
  container.youcanttouchthis := false;

equation
  container.youcanttouchthat = 0;

end protectedvar;
}}}"	defect	new	high	1.9.0	Backend	trunk			
