﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2107	Protected elements not protected	jwharington@…	Per Östlund	"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.

{{{
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	closed	high	2.0.0	Frontend	trunk	fixed		
