﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2078	Inner/outer not working in algorithm section	Martin Sjölund	somebody	"Inner/outer not working in algorithm section (if we change the when-statement to a when-equation, we get the expected result):
{{{#!mo
model teststate3 

  block Common 
    Integer b; 
  end Common; 

  model Hookup 
    outer Common global; 
    Boolean active; 
    parameter Integer m; 
  algorithm 
    when (active) then 
      global.b := m; 
    end when; 
  end Hookup; 

  inner Common global; 

  Hookup fred (m = 0, active = true); 
  Hookup ginger (m = 1, active = false); 

end teststate3;
}}}"	defect	closed	high	1.14.0	Frontend	trunk	fixed		Adrian Pop Per Östlund
