diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-06-22 18:17:21 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-06-22 18:17:21 -0400 |
commit | 5eee5f4a3b11c467c853f8397c7f679e5d5acc7a (patch) | |
tree | e7e2de799c3ac84bba0d9d4e6df73e9fe1ca5fcb /tests | |
parent | a2f45884de59da6607cdb38080b956193e2e883f (diff) |
include
Diffstat (limited to 'tests')
-rw-r--r-- | tests/include.lac | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/include.lac b/tests/include.lac new file mode 100644 index 00000000..6661d0f9 --- /dev/null +++ b/tests/include.lac @@ -0,0 +1,15 @@ +signature S = sig + type t + val x : t +end + +signature S' = sig + include S + val y : t +end + +signature S'' = sig + type u + include S' where type t = int + type v +end |