aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorHugo Herbelin2020-10-17 21:40:57 +0200
committerHugo Herbelin2020-11-05 17:23:45 +0100
commita9745d914c8a156b76a95cbd9f4052ca06b4a55a (patch)
tree06a2f148fa7bba5cf070c8a7199d4c057fcefc9c /test-suite
parent7f90e6e0aa8dd27c64bac0dbc4b247ebb33d4aca (diff)
Fixes #13216 (use of type classes in the return clause of a match).
This was deactivated in fb1c2a017e but it seems useful (e.g. in contribs containers). It seems to be useful
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_13216.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_13216.v b/test-suite/bugs/closed/bug_13216.v
new file mode 100644
index 0000000000..54a28a9c53
--- /dev/null
+++ b/test-suite/bugs/closed/bug_13216.v
@@ -0,0 +1,4 @@
+Class A.
+Declare Instance a:A.
+Inductive T `(A) := C.
+Definition f x := match x with C _ => 0 end.