From 447b60afccc89ef18d8f92a260dd1fcdf735898e Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Sun, 31 Aug 2008 08:32:18 -0400 Subject: Laconic -> Ur --- tests/broad_unif.ur | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/broad_unif.ur (limited to 'tests/broad_unif.ur') diff --git a/tests/broad_unif.ur b/tests/broad_unif.ur new file mode 100644 index 00000000..bebd9104 --- /dev/null +++ b/tests/broad_unif.ur @@ -0,0 +1,15 @@ +structure M = struct + type t = int + val f = fn x => x + val y = f 0 +end + +signature S = sig + type t + val f : t -> t +end + +structure M : S = struct + type t = int + val f = fn x => x +end -- cgit v1.2.3