]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/JavaConstructors.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 / JavaConstructors.scl
1
2 @JavaType "org.simantics.scl.runtime.tuple.Tuple3"
3 data Tuple3 a b c =
4     @FieldNames [c0, c1, c2] 
5     Tuple3 a b c
6     
7 toTuple (Tuple3 x y z) = (x, y, z)
8
9 main = toTuple (Tuple3 "x" "y" "z")
10 --
11 (x,y,z)