diff options
| author | Emilio Jesus Gallego Arias | 2018-07-01 02:11:49 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2018-07-01 02:11:49 +0200 |
| commit | 09bc93c7faf59de7d8219d6c675300c522129404 (patch) | |
| tree | 3c3ca760d41c47139507cb6f4c5d3973c51dd0ac /test-suite | |
| parent | 74640d2b8bc158b301c0646db19747a86313e25a (diff) | |
| parent | e3a7caa0fb44f7a12248a140528462853810a614 (diff) | |
Merge PR #7759: Workaround to fix #7731 (printing not splitting line at break hint).
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/output/Notations3.out | 5 | ||||
| -rw-r--r-- | test-suite/output/Notations3.v | 14 |
2 files changed, 19 insertions, 0 deletions
diff --git a/test-suite/output/Notations3.out b/test-suite/output/Notations3.out index 996af59270..5ab616160a 100644 --- a/test-suite/output/Notations3.out +++ b/test-suite/output/Notations3.out @@ -241,3 +241,8 @@ Notation Notation "( x , y , .. , z )" := pair .. (pair x y) .. z : core_scope (default interpretation) +1 subgoal + + ============================ + ##@% + ^^^ diff --git a/test-suite/output/Notations3.v b/test-suite/output/Notations3.v index 3cf0c913f7..876aaa3944 100644 --- a/test-suite/output/Notations3.v +++ b/test-suite/output/Notations3.v @@ -385,3 +385,17 @@ Module LocateNotations. Locate "exists". Locate "( _ , _ , .. , _ )". End LocateNotations. + +Module Issue7731. + +Axiom (P : nat -> Prop). +Parameter (X : nat). +Notation "## @ E ^^^" := (P E) (at level 20, E at level 1, format "'[ ' ## '/' @ E '/' ^^^ ']'"). +Notation "%" := X. + +Set Printing Width 7. +Goal ## @ % ^^^. +Show. +Abort. + +End Issue7731. |
