2014-10-29 01:13:29 -05:00
|
|
|
// min-lldb-version: 310
|
2014-06-18 10:56:21 -05:00
|
|
|
|
|
|
|
// compile-flags:-g
|
|
|
|
|
|
|
|
// No debugger interaction required: just make sure it compiles without
|
|
|
|
// crashing.
|
|
|
|
|
|
|
|
fn test(a: &Vec<u8>) {
|
|
|
|
print!("{}", a.len());
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
2016-10-29 16:54:04 -05:00
|
|
|
let data = vec![];
|
2014-06-18 10:56:21 -05:00
|
|
|
test(&data);
|
|
|
|
}
|