﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2484	Expandable connector resolution misses components	Christoph Höger	Per Östlund	"The following model is fine in Dymola (and AFAIK according to the spec):

{{{
#!mo
model Test                                           
  import Modelica.Constants.small;                   
                                                     
  expandable connector Bus end Bus;                  
  expandable connector SubBus end SubBus;            
                                                     
  connector C Real x; end C;                         
                                                     
  model Component1                                   
    Bus bus;                                         
    SubBus subBus;                                   
    C c;                                             
    equation                                         
    connect(bus.subBus, subBus);                     
    connect(subBus.c, c);                            
    c.x = 42;                                        
  end Component1;                                    
                                                     
  Component1 component;                              
  C c;                                               
  Bus bus;                                           
  equation                                           
  connect(bus, component.bus);                       
  connect(c, bus.subBus.c);                          
end Test;                                            
}}}

omc complains about subBus not being part of bus. This can be fixed (although not in this test case due to #2385) by adding explicit connections for each subcomponent.

Version used: 1.9.0 (r17628)
"	defect	assigned	blocker	2.0.0	New Instantiation	trunk			
