mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-23 15:10:34 +00:00
6 lines
214 B
Rust
6 lines
214 B
Rust
fn main() {
|
|
// Verify the panic runtime works: a panic must print its message to stderr
|
|
// and exit with a non-zero status (Rust's default panic exit code is 101).
|
|
panic!("explicit panic from test");
|
|
}
|