diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-02-24 14:09:38 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-02-24 14:09:38 +0100 |
| commit | 448844d66cef5f4980d0575e783757264c962bb5 (patch) | |
| tree | f280aaef927da2a30c18f13cc124c8eb77ad3abf /tests/typ | |
| parent | 6547c2d6d5b25f44e52ac56698ed08ff6a5dbb3a (diff) | |
Allow multiple authors
Diffstat (limited to 'tests/typ')
| -rw-r--r-- | tests/typ/meta/document.typ | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/typ/meta/document.typ b/tests/typ/meta/document.typ index e8d53650..f2c7a8bb 100644 --- a/tests/typ/meta/document.typ +++ b/tests/typ/meta/document.typ @@ -6,6 +6,17 @@ What's up? --- +// This, too. +// Ref: false +#set document(author: ("A", "B")) + +--- +// This, too. +// Error: 23-29 expected string, found integer +#set document(author: (123,)) +What's up? + +--- Hello // Error: 2-30 must appear before any content |
