summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/2245.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/2245.v')
-rw-r--r--test-suite/bugs/closed/2245.v11
1 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/2245.v b/test-suite/bugs/closed/2245.v
new file mode 100644
index 00000000..f0162f3b
--- /dev/null
+++ b/test-suite/bugs/closed/2245.v
@@ -0,0 +1,11 @@
+Module Type Test.
+
+Section Sec.
+Variables (A:Type).
+Context (B:Type).
+End Sec.
+
+Fail Check B. (* used to be found !!! *)
+Fail Check A.
+
+End Test.