aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/4193.v
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2015-04-17 15:36:11 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2015-04-17 16:09:47 +0200
commit1c0a1dbfd13f0618b33213c4d42e50d44465c987 (patch)
tree1b268df48a886e63f7848d9b766df43fb69c0d98 /test-suite/bugs/closed/4193.v
parentec462f70ae8062696d4aec8b89c1bb5da3f6a19a (diff)
Extra fix to 934761875 and f4ee7ee31e4 on optimizing Import of several
libraries at once (see #4193).
Diffstat (limited to 'test-suite/bugs/closed/4193.v')
-rw-r--r--test-suite/bugs/closed/4193.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4193.v b/test-suite/bugs/closed/4193.v
new file mode 100644
index 000000000..885d04a92
--- /dev/null
+++ b/test-suite/bugs/closed/4193.v
@@ -0,0 +1,7 @@
+Module Type E.
+End E.
+
+Module Type A (M : E).
+End A.
+
+Fail Module Type F (Import X : A).