summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/shouldsucceed/1568.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/shouldsucceed/1568.v')
-rw-r--r--test-suite/bugs/closed/shouldsucceed/1568.v13
1 files changed, 0 insertions, 13 deletions
diff --git a/test-suite/bugs/closed/shouldsucceed/1568.v b/test-suite/bugs/closed/shouldsucceed/1568.v
deleted file mode 100644
index 3609e9c8..00000000
--- a/test-suite/bugs/closed/shouldsucceed/1568.v
+++ /dev/null
@@ -1,13 +0,0 @@
-CoInductive A: Set :=
- mk_A: B -> A
-with B: Set :=
- mk_B: A -> B.
-
-CoFixpoint a:A := mk_A b
-with b:B := mk_B a.
-
-Goal b = match a with mk_A a1 => a1 end.
- simpl. reflexivity.
-Qed.
-
-