﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
3492	Incorrect flatenning of connectors in outer class	Maksimov Doe	somebody	"{{{
#!modelica
model Ex

  model Foo
    connector Conn
      input Integer x;
    end Conn;
    Conn c;
  end Foo;

  model Foo1
    outer Foo foo;
    output Integer x = 0;
  equation
    connect(x, foo.c.x);
  end Foo1;

  inner Foo foo;
  Foo1 foo1;
end Ex;
}}}

Get flattening output with incorrect connect equation
{{{
#!modelica
class Ex
  Integer foo.c.x;
  Integer foo1.x = 0;
equation
  foo1.foo.c.x = foo1.x;
end Ex;
}}}

Below is correct output:
{{{
#!modelica
class Ex
  Integer foo.c.x;
  Integer foo1.x = 0;
equation
  foo.c.x = foo1.x;
end Ex;
}}}"	defect	closed	high	1.9.4	Frontend		fixed		
