diff options
| author | Maxime Dénès | 2017-04-11 00:52:06 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2017-04-11 00:52:06 +0200 |
| commit | 351b4e0d2d7fa9b1ed853e9d834993ee24a1a130 (patch) | |
| tree | 6d3dc0ca400c9d51a9b13bc597903c2d4f8d25db /test-suite | |
| parent | 835be3a05e28eb6e26f703a034f22b2c6c61acaa (diff) | |
| parent | 4bce91623c2857f843129e927fdadb30a9c87a7e (diff) | |
Merge PR#537: Efficient side-effect abstraction
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/success/abstract_chain.v | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/test-suite/success/abstract_chain.v b/test-suite/success/abstract_chain.v new file mode 100644 index 0000000000..0ff61e87f8 --- /dev/null +++ b/test-suite/success/abstract_chain.v @@ -0,0 +1,43 @@ +Lemma foo1 : nat -> True. +Proof. +intros _. +assert (H : True -> True). +{ abstract (exact (fun x => x)) using bar. } +assert (H' : True). +{ abstract (exact (bar I)) using qux. } +exact H'. +Qed. + +Lemma foo2 : True. +Proof. +assert (H : True -> True). +{ abstract (exact (fun x => x)) using bar. } +assert (H' : True). +{ abstract (exact (bar I)) using qux. } +assert (H'' : True). +{ abstract (exact (bar qux)) using quz. } +exact H''. +Qed. + +Set Universe Polymorphism. + +Lemma foo3 : nat -> True. +Proof. +intros _. +assert (H : True -> True). +{ abstract (exact (fun x => x)) using bar. } +assert (H' : True). +{ abstract (exact (bar I)) using qux. } +exact H'. +Qed. + +Lemma foo4 : True. +Proof. +assert (H : True -> True). +{ abstract (exact (fun x => x)) using bar. } +assert (H' : True). +{ abstract (exact (bar I)) using qux. } +assert (H'' : True). +{ abstract (exact (bar qux)) using quz. } +exact H''. +Qed. |
