summaryrefslogtreecommitdiff
path: root/test/coq/pass/exatom.sail
diff options
context:
space:
mode:
Diffstat (limited to 'test/coq/pass/exatom.sail')
-rw-r--r--test/coq/pass/exatom.sail9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/coq/pass/exatom.sail b/test/coq/pass/exatom.sail
new file mode 100644
index 00000000..db162536
--- /dev/null
+++ b/test/coq/pass/exatom.sail
@@ -0,0 +1,9 @@
+$include <prelude.sail>
+
+val f : forall 'n, 'n in {8,16}. atom('n) -> atom('n)
+
+val make : unit -> {'n, 'n in {8,16}. atom('n)}
+
+val test : {'n, 'n in {8,16}. atom('n)} -> int
+
+function test(v) = f(v)