aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/bug_4165.v
blob: 5333a0f6cfafef9a2942963dbad197393732f39c (plain)
1
2
3
4
5
6
7
8
Lemma foo : True.
Proof.
pose (fun x : nat => (let H:=true in x)) as s.
match eval cbv delta [s] in s with
| context C[true] =>
  let C':=context C[false] in pose C' as s'
end.
Abort.