]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Matching3.scl
Merge commit 'ffdf837'
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / Matching3.scl
1 \r
2 a = 5 :: Long\r
3 main = match a with\r
4   1 -> "wrong"\r
5   2 -> "wrong"\r
6   5 -> "right"\r
7   6 -> "wrong"\r
8   _ -> "wrong"\r
9 --\r
10 right