diff options
| author | Brian Campbell | 2017-09-04 12:09:59 +0100 |
|---|---|---|
| committer | Brian Campbell | 2017-09-04 12:09:59 +0100 |
| commit | 00cf8533221d2dfa650adcd38ac53943be5bd995 (patch) | |
| tree | 21a34e1f094ecec430798020e046dd3374e6e74c /test/ocaml/string_equality | |
| parent | 461f3c914b2e767ef3ddb926712845d5442475f3 (diff) | |
| parent | de506ed9f9c290796f159f2b5279589519c2a198 (diff) | |
Merge branch 'experiments' of bitbucket.org:Peter_Sewell/sail into mono-experiments
Diffstat (limited to 'test/ocaml/string_equality')
| -rw-r--r-- | test/ocaml/string_equality/expect | 1 | ||||
| -rw-r--r-- | test/ocaml/string_equality/string_equality.sail | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/test/ocaml/string_equality/expect b/test/ocaml/string_equality/expect new file mode 100644 index 00000000..27ba77dd --- /dev/null +++ b/test/ocaml/string_equality/expect @@ -0,0 +1 @@ +true diff --git a/test/ocaml/string_equality/string_equality.sail b/test/ocaml/string_equality/string_equality.sail new file mode 100644 index 00000000..68629862 --- /dev/null +++ b/test/ocaml/string_equality/string_equality.sail @@ -0,0 +1,10 @@ + +val unit -> unit effect pure main + +function main () = { + if ("test" == "test") then { + print("true") + } else { + print("false") + } +} |
