diff options
| author | Gaëtan Gilbert | 2020-02-19 14:33:19 +0100 |
|---|---|---|
| committer | Gaëtan Gilbert | 2020-04-13 15:18:18 +0200 |
| commit | bbcf08fe1c0ab7e2cf21711f56230aaae93a1bdb (patch) | |
| tree | 4f1cb9c7878df65842f013d25951fd7fddc41ddd | |
| parent | 0beca74bc90cef03d779a8e4f8668335c9c37716 (diff) | |
Add specific test for "useless" syndef
This happens in practice with the list syndef in List.v
| -rw-r--r-- | test-suite/output/UselessSyndef.out | 2 | ||||
| -rw-r--r-- | test-suite/output/UselessSyndef.v | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/test-suite/output/UselessSyndef.out b/test-suite/output/UselessSyndef.out new file mode 100644 index 0000000000..ce484889b3 --- /dev/null +++ b/test-suite/output/UselessSyndef.out @@ -0,0 +1,2 @@ +a + : nat diff --git a/test-suite/output/UselessSyndef.v b/test-suite/output/UselessSyndef.v new file mode 100644 index 0000000000..96ad6e9f5c --- /dev/null +++ b/test-suite/output/UselessSyndef.v @@ -0,0 +1,10 @@ +Module M. + Definition a := 0. +End M. +Module N. + Notation a := M.a (only parsing). +End N. + +Import M. Import N. + +Check a. |
