From a78e978c05d7d28f31f4407b6918d89d44a5643c Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Sun, 22 Jun 2008 09:27:29 -0400 Subject: Start of FFI --- tests/ffi.lac | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/ffi.lac (limited to 'tests') diff --git a/tests/ffi.lac b/tests/ffi.lac new file mode 100644 index 00000000..edd6e57b --- /dev/null +++ b/tests/ffi.lac @@ -0,0 +1,12 @@ +extern structure Lib : sig + type t + val x : t +end + +type t' = Lib.t +val x' : t' = Lib.x + +structure Lib' = Lib + +type t'' = Lib'.t +val x'' : t'' = Lib'.x -- cgit v1.2.3