﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1439	Inner/outer replaceable does not work	rfalkeborn	rfalkeborn	"Checking model E gives an error (too few equations). However, since D is redeclared as B it should work (I think). Dymola simulates the model with no problem.

{{{
package innerOuterError
  partial block A
    input Real u;
    output Real y;
  end A;

  block B
    extends A;
  equation 
    y=u;
  end B;

  model C
    outer replaceable block D= A;
    D d;
    Real y;
    Real u;
  equation 
    u=d.u;
    y=d.y;
  end C;

  model E
    C c;
    inner replaceable block D= B extends A;
  equation 
    c.u=1;
  end E;

end innerOuterError;

}}}"	defect	closed	high		Frontend		fixed		rfalkeborn
