﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2806	Instantial Model should show only top level inputs and outputs as inputs and outputs	Vitalij Ruge	Per Östlund	"Consider this example

{{{
package test

 block blockA
  input Real in_x;
  output Real out_x = in_x;
 end blockA;

  model B
   blockA A(in_x = time);
   Real x;
  equation
   A.out_x = x;
  end B;

end test;
}}}

Instantial Model create

{{{
class test.B
  input Real A.in_x = time;
  output Real A.out_x = A.in_x;
  Real x;
equation
  A.out_x = x;
end test.B;
}}}

with some inputs and outputs. But the model ''B'' don't have any inputs and outputs

"	defect	closed	normal	1.9.4	Frontend	trunk	fixed		Adeel Asghar
