]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/ListSyntax.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 / ListSyntax.scl
1 import "Prelude"
2
3 a = [1,2]
4 b = [5,9]
5 main = [(x,y) | x <- a, y <- b]
6 --
7 [(1,5), (1,9), (2,5), (2,9)]