summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMathias Fischler <Mafii@users.noreply.github.com>2023-07-05 16:25:26 +0200
committerGitHub <noreply@github.com>2023-07-05 16:25:26 +0200
commit5bdad06d9202ab2af728778ab84acc385c439c64 (patch)
tree4aa31178ae52727a5faf7bbd784a784ebdfae5e2 /tests
parentd37217aaa4b5029d7ec8405739b8deda4792696f (diff)
Parser hints infrastructure (#1570)
Diffstat (limited to 'tests')
-rw-r--r--tests/typ/compiler/for.typ3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/typ/compiler/for.typ b/tests/typ/compiler/for.typ
index 7a0d9601..b2a2287d 100644
--- a/tests/typ/compiler/for.typ
+++ b/tests/typ/compiler/for.typ
@@ -92,7 +92,8 @@
---
// Destructuring without parentheses.
-// Error: 7 expected keyword `in` - did you mean to use a destructuring pattern?
+// Error: 7 expected keyword `in`
+// Hint: 7 did you mean to use a destructuring pattern?
#for k, v in (a: 4, b: 5) {
dont-care
}