Skip to content

Commit f4688aa

Browse files
committed
- Fix for (some) polymorphic functions using array<A'>
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@8939 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
1 parent d576632 commit f4688aa

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Compiler/FrontEnd/Types.mo

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6110,6 +6110,11 @@ algorithm
61106110
ty = replaceSolvedBinding(ty, solvedBindings);
61116111
ty = (DAE.T_LIST(ty),NONE());
61126112
then ty;
6113+
case ((DAE.T_META_ARRAY(ty),_),_)
6114+
equation
6115+
ty = replaceSolvedBinding(ty, solvedBindings);
6116+
ty = (DAE.T_META_ARRAY(ty),NONE());
6117+
then ty;
61136118
case ((DAE.T_METAOPTION(ty),_),_)
61146119
equation
61156120
ty = replaceSolvedBinding(ty, solvedBindings);

0 commit comments

Comments
 (0)