diff options
author | Maxime Dénès <mail@maximedenes.fr> | 2015-01-17 09:43:54 +0100 |
---|---|---|
committer | Maxime Dénès <mail@maximedenes.fr> | 2015-01-17 10:38:50 +0100 |
commit | 335c960105971b2a86833793d893df4d9d0d1c90 (patch) | |
tree | c400ded6dcf8ac7c252736bfbdd7f4bcea9f7f4d | |
parent | 6d56defdaaa31e34422a70d3c2f236979426abb8 (diff) |
Revert "Update test for #3363 now that Require is forbidden inside modules."
This reverts commit 1c6e7d3744d101124ed0152c2aac1e71c9f9d40d.
-rw-r--r-- | test-suite/bugs/opened/3363.v | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/test-suite/bugs/opened/3363.v b/test-suite/bugs/opened/3363.v index 8307fdf50..800d89573 100644 --- a/test-suite/bugs/opened/3363.v +++ b/test-suite/bugs/opened/3363.v @@ -1,4 +1,19 @@ -(** In this file, either both [Check]s should fail, or both should succeed. *) +(** In this file, either all four [Check]s should fail, or all four should succeed. *) +Module A. + Section HexStrings. + Require Import String. + End HexStrings. + Fail Check string. +End A. + +Module B. + Section HexStrings. + Require String. + Import String. + End HexStrings. + Fail Check string. +End B. + Section HexStrings. Require String. Import String. |