diff options
| author | MALO <57839069+MDLC01@users.noreply.github.com> | 2023-10-22 13:43:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-22 13:43:24 +0200 |
| commit | cf9ca6cb594e27237637bf15b00f9df8c5e11999 (patch) | |
| tree | 21d2f4d0f77f6f3d121f9a65f5fc8c5f969a0509 /tests/typ | |
| parent | 3ed6462ee0a63eb3946ba48dc82b525f7c5c1079 (diff) | |
Fix compiler panic for float with no vertical alignment (#2437)
Diffstat (limited to 'tests/typ')
| -rw-r--r-- | tests/typ/layout/place-float-auto.typ | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/typ/layout/place-float-auto.typ b/tests/typ/layout/place-float-auto.typ index 799c9fc7..2ca3dc3a 100644 --- a/tests/typ/layout/place-float-auto.typ +++ b/tests/typ/layout/place-float-auto.typ @@ -17,3 +17,15 @@ --- // Error: 2-45 floating placement must be `auto`, `top`, or `bottom` #place(center + horizon, float: true)[Hello] + +--- +// Error: 2-36 floating placement must be `auto`, `top`, or `bottom` +#place(horizon, float: true)[Hello] + +--- +// Error: 2-27 floating placement must be `auto`, `top`, or `bottom` +#place(float: true)[Hello] + +--- +// Error: 2-34 floating placement must be `auto`, `top`, or `bottom` +#place(right, float: true)[Hello] |
