Skip to content

Commit

Permalink
Add regression test for 98444
Browse files Browse the repository at this point in the history
  • Loading branch information
albertlarsan68 committed Mar 6, 2023
1 parent ac4379f commit 33d7fad
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/ui/lint/unconditional_panic_98444.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// build-fail

fn main() {
let xs: [i32; 5] = [1, 2, 3, 4, 5];
let _ = &xs;
let _ = xs[7]; //~ ERROR: this operation will panic at runtime [unconditional_panic]
}
10 changes: 10 additions & 0 deletions tests/ui/lint/unconditional_panic_98444.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
error: this operation will panic at runtime
--> $DIR/unconditional_panic_98444.rs:6:13
|
LL | let _ = xs[7];
| ^^^^^ index out of bounds: the length is 5 but the index is 7
|
= note: `#[deny(unconditional_panic)]` on by default

error: aborting due to previous error

0 comments on commit 33d7fad

Please sign in to comment.