Skip to content

Commit

Permalink
Fixes bug in lookup of builtin classes
Browse files Browse the repository at this point in the history
The bug was introduced in 88d0d6f.
  • Loading branch information
sjoelund committed Nov 2, 2015
1 parent 4d8edfa commit acb946e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/Script/Interactive.mo
Expand Up @@ -15197,7 +15197,7 @@ algorithm
outClass := getPathedClassInProgramWork(inPath, inProgram, enclOnErr);
else
(p, _) := Builtin.getInitialFunctions();
outClass := getPathedClassInProgramWork(inPath, inProgram, enclOnErr);
outClass := getPathedClassInProgramWork(inPath, p, enclOnErr);
end try;
end getPathedClassInProgram;

Expand Down

0 comments on commit acb946e

Please sign in to comment.