﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4355	Simultaneous inner/outer broken	Christoph Höger	somebody	"The following model should work according to the specification. In particular, the `n` on the rhs of `n` in `A` should point to the ''outer'' constant and the `n` in `c` should point to the one in `A`. 
i.e., I expect the equation `a.c.y = 41`.


{{{
#!mo
package Test
  class A
    inner outer constant Integer n = n-1;
    Real x = n;
    C c;
  end A;

  class B
    inner constant Integer n = 42;
    A a;
  end B;

  class C
    outer constant Integer n;
    Real y = n;
  end C;
end Test;
}}}
"	defect	closed	high	1.19.0	*unknown*	v1.11.0	fixed		
