aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorHugo Herbelin2019-10-18 21:27:48 +0200
committerHugo Herbelin2019-10-18 21:27:48 +0200
commit54689c1c1e1333dd1bf63c619481c2ec99a5762e (patch)
tree95798955f8638ad3f2067f7fd27426c31036124c /test-suite
parentc5f2b14020ea1fb2b11321f1daa00abe8dec3477 (diff)
parenta7b406bccfd51d7afee1f26ecfe38002be3b76f2 (diff)
Merge PR #10914: Fix Locate printing regression
Reviewed-by: herbelin
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/output/locate.out3
-rw-r--r--test-suite/output/locate.v3
2 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/output/locate.out b/test-suite/output/locate.out
new file mode 100644
index 0000000000..473db2d312
--- /dev/null
+++ b/test-suite/output/locate.out
@@ -0,0 +1,3 @@
+Notation
+"b1 && b2" := if b1 then b2 else false (default interpretation)
+"x && y" := andb x y : bool_scope
diff --git a/test-suite/output/locate.v b/test-suite/output/locate.v
new file mode 100644
index 0000000000..af8b0ee193
--- /dev/null
+++ b/test-suite/output/locate.v
@@ -0,0 +1,3 @@
+Set Printing Width 400.
+Notation "b1 && b2" := (if b1 then b2 else false).
+Locate "&&".