]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/ModuleInitialization.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / ModuleInitialization.scl
1 import "Prelude"
2
3 d = map (+1) c
4 a = [1,2,3]
5 c = map (+1) b
6 b = map (+1) a
7 e = map (+1) d
8
9 main = e
10 --
11 [5, 6, 7]