summaryrefslogtreecommitdiff
path: root/test-suite/bugs/opened/shouldnotfail/1671.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/opened/shouldnotfail/1671.v')
-rw-r--r--test-suite/bugs/opened/shouldnotfail/1671.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/bugs/opened/shouldnotfail/1671.v b/test-suite/bugs/opened/shouldnotfail/1671.v
index 800c431e..d95c2108 100644
--- a/test-suite/bugs/opened/shouldnotfail/1671.v
+++ b/test-suite/bugs/opened/shouldnotfail/1671.v
@@ -6,7 +6,7 @@ CoInductive hdlist : unit -> Type :=
Variable P : forall bo, hdlist bo -> Prop.
Variable all : forall bo l, P bo l.
-Definition F (l:hdlist tt) : P tt l :=
+Definition F (l:hdlist tt) : P tt l :=
match l in hdlist u return P u l with
| cons (cons l') => all tt _
end.