diff options
Diffstat (limited to 'test/c/poly_union.sail')
| -rw-r--r-- | test/c/poly_union.sail | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/c/poly_union.sail b/test/c/poly_union.sail new file mode 100644 index 00000000..02a80e17 --- /dev/null +++ b/test/c/poly_union.sail @@ -0,0 +1,27 @@ +default Order dec + +val print = "print_endline" : string -> unit + +union ast = { + HCF : unit +} + +union option ('a : Type) = { + Some : 'a, + None : unit +} + +val decode : unit -> option(ast) + +function decode() = Some(HCF()) + +val main : unit -> unit + +function main() = { + let instr = decode(); + match instr { + Some(HCF()) => print("HCF"), + Some(_) => print("Some(_)"), + None() => print("None") + } +}
\ No newline at end of file |
