mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
15 lines
255 B
XML
15 lines
255 B
XML
--- panic ---
|
|
// Test panic.
|
|
// Error: 2-9 panicked
|
|
#panic()
|
|
|
|
--- panic-with-int ---
|
|
// Test panic.
|
|
// Error: 2-12 panicked with: 123
|
|
#panic(123)
|
|
|
|
--- panic-with-str ---
|
|
// Test panic.
|
|
// Error: 2-24 panicked with: "this is wrong"
|
|
#panic("this is wrong")
|