]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/MatchingWithMissingParameter.scl
Merge commit 'bf75fd9'
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / 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