comparison tests/include.ur @ 244:71bafe66dbe1

Laconic -> Ur
author Adam Chlipala <adamc@hcoop.net>
date Sun, 31 Aug 2008 08:32:18 -0400
parents tests/include.lac@fd8a81ecd598
children
comparison
equal deleted inserted replaced
243:2b9dfaffb008 244:71bafe66dbe1
1 signature S = sig
2 type t
3 val x : t
4 end
5
6 signature S' = sig
7 include S
8 val y : t
9 end
10
11 signature S'' = sig
12 type u
13 include S' where type t = int
14 type v
15 end