]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/scl/MatchingWithMissingParameter.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / tests / scl / MatchingWithMissingParameter.scl
1 data Foo = Foo Integer Integer
2          | Bar
3          
4 isFoo (Foo _) = True
5 isFoo _ = False
6
7 main = "Hello world!"
8 --
9 4:7-4:14: The function is applied with too few parameters.
10