37 lines
974 B
Rust
37 lines
974 B
Rust
// Copyright 2013-2016 The Rust Project Developers. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution and at
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
// ignore-windows failing on win32 bot
|
|
// ignore-freebsd: gdb package too new
|
|
// ignore-android: FIXME(#10381)
|
|
// compile-flags:-g
|
|
// min-gdb-version 7.7
|
|
// min-lldb-version: 310
|
|
|
|
// === GDB TESTS ===================================================================================
|
|
|
|
// gdb-command: run
|
|
|
|
// gdb-command: print vec
|
|
// gdb-check:$1 = Vec<i32>(len: [...], cap: [...])[...]
|
|
|
|
|
|
#![allow(unused_variables)]
|
|
|
|
fn main() {
|
|
|
|
let vec;
|
|
zzz(); // #break
|
|
vec = vec![0];
|
|
|
|
}
|
|
|
|
fn zzz() { () }
|