aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorGaëtan Gilbert2020-07-07 11:49:35 +0200
committerGaëtan Gilbert2020-07-09 14:18:17 +0200
commitdc16333815d8c542d84abd8bcdd52b7e372b760b (patch)
tree32617df0ded9a5fb87fc2d95ff8031858a1d922a /test-suite
parent577ec77f17a872d6bc36073ceeb3cf582fcf01c4 (diff)
Recordops: unify struc_typ summary record and libobject entry struc_tuple
This requires updating the parameter count at section end, I felt it was easier to do with rebuild_function but it could be done in discharge if needed. Incidentally fixes #12649.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_12649.v11
1 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_12649.v b/test-suite/bugs/closed/bug_12649.v
new file mode 100644
index 0000000000..5547de84ff
--- /dev/null
+++ b/test-suite/bugs/closed/bug_12649.v
@@ -0,0 +1,11 @@
+
+
+Module Type A.
+
+ Record baz : Prop := B { }. (* any sort would do *)
+
+End A.
+
+Print A.
+Module Type UseA (c: A). End UseA.
+Print UseA. (* ANOMALY! Int.Map.get's assert false *)