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

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

27 lines
486 B
Rust
Raw Normal View History

// ignore-windows failing on win32 bot
// ignore-freebsd: gdb package too new
// ignore-android: FIXME(#10381)
// compile-flags:-g
2020-07-17 22:17:30 -05:00
// min-gdb-version: 8.1
// min-lldb-version: 310
// === 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() { () }