]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/scl/Maybe2.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / tests / scl / Maybe2.scl
1 a = Just True
2 main = match a with
3     Nothing -> False
4     Just x -> x
5 --
6 true