diff options
Diffstat (limited to 'tests/typ/control/let-invalid.typ')
| -rw-r--r-- | tests/typ/control/let-invalid.typ | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/typ/control/let-invalid.typ b/tests/typ/control/let-invalid.typ new file mode 100644 index 00000000..f29353ed --- /dev/null +++ b/tests/typ/control/let-invalid.typ @@ -0,0 +1,20 @@ +// Test invalid let binding syntax. + +--- +// Error: 5 expected identifier +#let + +// Error: 6-9 expected identifier, found string +#let "v" + +// Should output `1`. +// Error: 7 expected semicolon or line break +#let v 1 + +// Error: 9 expected expression +#let v = + +--- +// Should output `= 1`. +// Error: 6-9 expected identifier, found string +#let "v" = 1 |
