]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Void3.scl
TransferableGraphUtils.getObjects2 for fixing not-found handling
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / Void3.scl
1 import "JavaBuiltin" as Java
2
3 data Foo = Foo ()
4
5
6 ff = Foo ()
7
8 gg () = 3 :: Integer
9
10 main = gg (match ff with Foo a -> a)
11 --
12 3