diff options
Diffstat (limited to 'tests/TrivialMatch.ml')
| -rw-r--r-- | tests/TrivialMatch.ml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/TrivialMatch.ml b/tests/TrivialMatch.ml new file mode 100644 index 0000000..971eafb --- /dev/null +++ b/tests/TrivialMatch.ml @@ -0,0 +1,4 @@ +let x = + match 1 < 0 with + | true -> "something is terribly wrong here" + | false -> "correct" |
