rust/tests/debuginfo/pretty-uninitialized-vec.rs

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

24 lines
393 B
Rust
Raw Normal View History

2024-08-11 13:25:00 -05:00
//@ ignore-windows-gnu: #128981
//@ ignore-android: FIXME(#10381)
//@ compile-flags:-g
// === GDB TESTS ===================================================================================
// gdb-command: run
// gdb-command: print vec
// gdb-check:$1 = Vec(size=[...])[...]
#![allow(unused_variables)]
fn main() {
let vec;
zzz(); // #break
vec = vec![0];
}
fn zzz() { () }