summaryrefslogtreecommitdiff
path: root/test-suite/failure/circular_subtyping2.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/failure/circular_subtyping2.v')
-rw-r--r--test-suite/failure/circular_subtyping2.v8
1 files changed, 0 insertions, 8 deletions
diff --git a/test-suite/failure/circular_subtyping2.v b/test-suite/failure/circular_subtyping2.v
deleted file mode 100644
index 3bacdc65..00000000
--- a/test-suite/failure/circular_subtyping2.v
+++ /dev/null
@@ -1,8 +0,0 @@
-(*subtyping verification in presence of pseudo-circularity at functor application *)
-Module Type S. End S.
-Module Type T. Declare Module M:S. End T.
-Module N:S. End N.
-
-Module F (X:S) (Y:T with Module M:=X). End F.
-
-Module G := F N N. \ No newline at end of file