diff options
| author | Emilio Jesus Gallego Arias | 2018-09-03 01:08:38 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2018-09-03 01:08:38 +0200 |
| commit | 36bd1b242c305f7f383f87922a0544e54a4c7808 (patch) | |
| tree | 37e04bc90da7c1a8e917fc4cfb3161d312220f68 /test-suite | |
| parent | 4d2e117964df8e5bd7222192318b11820f92db78 (diff) | |
| parent | 75f5e200f4f7eb6ca829869a8f8dada45e9751e9 (diff) | |
Merge PR #8107: Fixes #8106: anomaly if declaring levels for only printing then only parsing
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/8106.v | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/8106.v b/test-suite/bugs/closed/8106.v new file mode 100644 index 0000000000..a711c5adef --- /dev/null +++ b/test-suite/bugs/closed/8106.v @@ -0,0 +1,4 @@ +(* Was raising an anomaly "already assigned a level" on the second line *) + +Notation "c1 ; c2" := (c1 + c2) (only printing, at level 76, right associativity, c1 at level 76, c2 at level 76). +Notation "c1 ; c2" := (c1 + c2) (only parsing, at level 76, right associativity, c2 at level 76). |
