diff options
| author | Hugo Herbelin | 2016-06-12 19:59:25 +0200 |
|---|---|---|
| committer | Hugo Herbelin | 2016-06-12 20:00:58 +0200 |
| commit | 36f95a197b106b928a3fc99d7ee5904099a654e4 (patch) | |
| tree | f021a90149884783c50cefbef23b8fef143c5933 | |
| parent | 5a6d7d842d55c0f9cd34498445fc1c09365ac056 (diff) | |
For the record, an example one would like to see working.
| -rw-r--r-- | test-suite/bugs/opened/4813.v | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test-suite/bugs/opened/4813.v b/test-suite/bugs/opened/4813.v new file mode 100644 index 0000000000..7c65accfea --- /dev/null +++ b/test-suite/bugs/opened/4813.v @@ -0,0 +1,5 @@ +(* An example one would like to see succeeding *) + +Record T := BT { t : Set }. +Record U (x : T) := BU { u : t x -> Prop }. +Definition A (H : unit -> Prop) : U (BT unit) := BU _ H. |
