summaryrefslogtreecommitdiff
path: root/test-suite/output/Cases.out
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/output/Cases.out')
-rw-r--r--test-suite/output/Cases.out7
1 files changed, 3 insertions, 4 deletions
diff --git a/test-suite/output/Cases.out b/test-suite/output/Cases.out
index 1f0e12d3..1ec02c56 100644
--- a/test-suite/output/Cases.out
+++ b/test-suite/output/Cases.out
@@ -9,10 +9,9 @@ fix F (t : t) : P t :=
proj =
fun (x y : nat) (P : nat -> Type) (def : P x) (prf : P y) =>
match eq_nat_dec x y with
-| left eqprf =>
- match eqprf in (_ = z) return (P z) with
- | refl_equal => def
- end
+| left eqprf => match eqprf in (_ = z) return (P z) with
+ | eq_refl => def
+ end
| right _ => prf
end
: forall (x y : nat) (P : nat -> Type), P x -> P y -> P y