Changes between Initial Version and Version 2 of Ticket #2107


Ignore:
Timestamp:
2013-03-07T10:13:20Z (12 years ago)
Author:
Lennart Ochel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2107

    • Property Component BackendFrontend
    • Property Owner changed from probably noone to somebody
  • Ticket #2107 – Description

    initial v2  
    33Example follows.  This compiles and runs fine, it should error out.
    44
    5 {{{#mo
     5{{{
    66class protectedvar
    7  
    87  class Container
    98    protected
    109    Boolean youcanttouchthis (start = true);
    1110    Real youcanttouchthat;
    12 
    1311  end Container;
    1412
    1513  Container container;
    16 
    1714algorithm
    1815  container.youcanttouchthis := false;
    19 
    2016equation
    2117  container.youcanttouchthat = 0;
    22 
    2318end protectedvar;
    2419}}}