mirror of
https://github.com/typst/typst
synced 2025-05-14 17:15:28 +08:00
12 lines
245 B
Typst
12 lines
245 B
Typst
// Test that errors in show rules are delayed: There can be multiple at once.
|
|
|
|
---
|
|
// Error: 21-34 panicked with: "hey1"
|
|
#show heading: _ => panic("hey1")
|
|
|
|
// Error: 20-33 panicked with: "hey2"
|
|
#show strong: _ => panic("hey2")
|
|
|
|
= Hello
|
|
*strong*
|