summaryrefslogtreecommitdiff
path: root/tests/suite/foundations/panic.typ
blob: 5d9d40468ee225913a1d6d9d058fbb049b0c1dcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- 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")