]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/scl/Void3.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / 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