Files
rippled/nix/docker/test_files/rust/sources/panic.rs
2026-07-14 13:28:55 +00:00

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");
}