]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/MatchingWithMissingParameter.scl
Re-enabled Acorn transaction cancellation support for testing
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / 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