-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpanic.rs
46 lines (41 loc) · 1.45 KB
/
panic.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/// ! to run, execute: cargo run --bin panic
/// # Panic - an unrecoverable error
/// ---------------------------------
///
/// Unrecoverable errors are those errors that abort the execution of the
/// program. In rust, we use `panic!()` macro to throw unrecoverable error. In
/// some cases the code automatically panics for example trying to access a
/// non-existent index of an array.
///
/// Below is an example of an unrecoverable error.
fn main() {
println!("Panic Examples");
// A basic panic.
// TODO: please uncomment line below to see panic message
// panic!("⛔ The program panics here. ⛔")
// we can also get panic when we try to access non-existent index of an
// array
let _primes = [2, 3, 5, 7, 11];
// TODO: please uncomment line below to see panic message
for x in 0..6 {
// the code panics at 5th iteration
println!("Prime at index 5 is: {}", _primes[x]);
}
// Panic Examples
// Prime at index 5 is: 2
// Prime at index 5 is: 3
// Prime at index 5 is: 5
// Prime at index 5 is: 7
// Prime at index 5 is: 11
// thread 'main' panicked at advanced/error-handling/src/panic.rs:25:45:
// index out of bounds: the len is 5 but the index is 5
// note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
}
#[cfg(test)]
mod tests {
#[test]
#[should_panic]
fn panics() {
String::from("Not a Number").parse::<usize>().unwrap();
}
}