]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/scl/Matching6.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / tests / scl / Matching6.scl
1 import "Prelude"
2
3 main = do 
4     match 1+1 :: Integer with
5         2 -> 2
6         0 -> 0
7         1 -> 1
8 --
9 2