diff options
| author | Pierre-Marie Pédrot | 2018-06-05 13:30:21 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2018-06-05 13:30:21 +0200 |
| commit | 00a01f65be79bef8592928941646750968dbe648 (patch) | |
| tree | ad742b6f4ed5c706308755f2a9bbff2fd261eb18 /test-suite | |
| parent | c7f8af076b3f9bcfd4ff84ca9a14fc65ab9b953d (diff) | |
| parent | 7ada864b7728c9c94b7ca9856b6b2c89feb0214e (diff) | |
Merge PR #7643: Fix #7631: native_compute fails to compile an example in Coq 8.8
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/7631.v | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/7631.v b/test-suite/bugs/closed/7631.v new file mode 100644 index 0000000000..34eb8b8676 --- /dev/null +++ b/test-suite/bugs/closed/7631.v @@ -0,0 +1,21 @@ +Module NamedContext. + +Definition foo := true. + +Section Foo. + +Let bar := foo. + +Eval native_compute in bar. + +End Foo. + +End NamedContext. + +Module RelContext. + +Definition foo := true. + +Definition bar (x := foo) := Eval native_compute in x. + +End RelContext. |
