Mercurial > urweb
comparison tests/open.ur @ 244:71bafe66dbe1
Laconic -> Ur
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 31 Aug 2008 08:32:18 -0400 |
parents | tests/open.lac@48b6d2c3df46 |
children |
comparison
equal
deleted
inserted
replaced
243:2b9dfaffb008 | 244:71bafe66dbe1 |
---|---|
1 structure S = struct | |
2 type t = int | |
3 val x = 0 | |
4 | |
5 structure S' : sig type u val y : t end = struct | |
6 type u = t | |
7 val y = x | |
8 end | |
9 | |
10 signature Sig = sig | |
11 type t | |
12 val x : t | |
13 end | |
14 end | |
15 | |
16 open S.S' | |
17 open S | |
18 open S' | |
19 | |
20 structure S' : Sig = S |