diff options
| author | Pierre-Marie Pédrot | 2018-09-11 13:41:19 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2018-09-11 13:41:19 +0200 |
| commit | ac25077cfcc1b9bf8c1dbe49b7d72569854326a6 (patch) | |
| tree | 0e519174dd137dcec8e201989d77a057f0fea332 /test-suite | |
| parent | 2d8616d98226518558c5bd1d2cb75746f4e46fb0 (diff) | |
| parent | e8ccf6120f3765e04c527bca8b2b1fffc6df08ca (diff) | |
Merge PR #8285: Fixing #8270: cbn was applying zeta even when not asked for.
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/8270.v | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/8270.v b/test-suite/bugs/closed/8270.v new file mode 100644 index 0000000000..f36f757f10 --- /dev/null +++ b/test-suite/bugs/closed/8270.v @@ -0,0 +1,15 @@ +(* Don't do zeta in cbn when not asked for *) + +Goal let x := 0 in + let y := x in + y = 0. + (* We use "cofix" as an example because there are obviously no + cofixpoints in sight. This problem arises with any set of + reduction flags (not including zeta where the lets are of course reduced away) *) + cbn cofix. + intro x. + unfold x at 1. (* Should succeed *) + Undo 2. + cbn zeta. + Fail unfold x at 1. +Abort. |
