diff options
author | Guillaume Melquiond <guillaume.melquiond@inria.fr> | 2016-05-04 10:36:43 +0200 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@inria.fr> | 2016-05-04 10:36:53 +0200 |
commit | dd7cf3a8086fa8a08a421314caec8543ba62226b (patch) | |
tree | d5657a668e9c5ee456813ebc4f90f5e402e9f883 /test-suite | |
parent | 1dd8d826592507046b35128800578149021dab4c (diff) |
Handle primitive projections inside types when extracting (bug #4616).
Note that extracting terms containing primitive projections is still
utterly broken, so don't use them.
Diffstat (limited to 'test-suite')
-rw-r--r-- | test-suite/bugs/closed/4616.v | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4616.v b/test-suite/bugs/closed/4616.v new file mode 100644 index 000000000..c862f8206 --- /dev/null +++ b/test-suite/bugs/closed/4616.v @@ -0,0 +1,4 @@ +Set Primitive Projections. +Record Foo' := Foo { foo : Type }. +Axiom f : forall t : Foo', foo t. +Extraction f. |