diff options
| author | Alasdair Armstrong | 2019-02-06 19:49:45 +0000 |
|---|---|---|
| committer | Alasdair Armstrong | 2019-02-06 19:49:45 +0000 |
| commit | cd6466eef8a7cb878010f5d9c6f6349606393bb1 (patch) | |
| tree | e9e848a564d91101320f432acea09046366d874e | |
| parent | aadbe7ede88dc9bbbda6a09876baacd6797153fb (diff) | |
Add typechecking test from Mark
| -rw-r--r-- | test/typecheck/pass/lt_flow.sail | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/typecheck/pass/lt_flow.sail b/test/typecheck/pass/lt_flow.sail new file mode 100644 index 00000000..4e7572da --- /dev/null +++ b/test/typecheck/pass/lt_flow.sail @@ -0,0 +1,5 @@ +val lt_flow : forall 'n 'm. (int('n), int('m)) -> bool('n <= 'm) + +val test : unit -> bool(true) + +function test() = lt_flow(1,10) |
