summaryrefslogtreecommitdiffstats
path: root/camlp4/test/fixtures/mod2.ml
diff options
context:
space:
mode:
Diffstat (limited to 'camlp4/test/fixtures/mod2.ml')
-rw-r--r--camlp4/test/fixtures/mod2.ml8
1 files changed, 0 insertions, 8 deletions
diff --git a/camlp4/test/fixtures/mod2.ml b/camlp4/test/fixtures/mod2.ml
deleted file mode 100644
index c0a1667d6..000000000
--- a/camlp4/test/fixtures/mod2.ml
+++ /dev/null
@@ -1,8 +0,0 @@
-module type S = sig type t = 'a; end;
-module F (A : S) = struct
- type t2 = A.t;
-end;
-
-module A = struct type t = int; end;
-
-module type S2 = S with type t = (F A).t2;