rust/tests/ui/nll/issue-51345-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
200 B
Rust
Raw Normal View History

//@ run-fail
//@ error-pattern:thread 'main' panicked
//@ error-pattern:explicit panic
//@ ignore-emscripten no processes
fn main() {
let mut vec = vec![];
vec.push((vec.len(), panic!()));
}