Mercurial > urweb
annotate tests/strdupe.ur @ 1906:0d2fdc2cc46c
Allow building in a separate build directory
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
---
Makefile.am | 30 +++---
src/c/Makefile.am | 2 +-
src/compiler.mlb | 2 +-
src/sources | 302 +++++++++++++++++++++++++++---------------------------
4 files changed, 168 insertions(+), 168 deletions(-)
author | Anders Kaseorg <andersk@mit.edu> |
---|---|
date | Fri, 22 Nov 2013 09:36:14 -0500 |
parents | 71bafe66dbe1 |
children |
rev | line source |
---|---|
adamc@63 | 1 val x = 0 |
adamc@64 | 2 val x = x |
adamc@63 | 3 |
adamc@63 | 4 type t = int |
adamc@64 | 5 type t = { A : t } |
adamc@63 | 6 |
adamc@63 | 7 signature S = sig end |
adamc@64 | 8 signature S = sig type t structure M : S end |
adamc@63 | 9 |
adamc@63 | 10 structure S = struct end |
adamc@64 | 11 structure S : S = struct type t = int structure M = S end |