2024-02-22 12:10:29 +00:00
|
|
|
//@ compile-flags:-g
|
2014-06-18 17:56:21 +02:00
|
|
|
|
|
|
|
// 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 22:54:04 +01:00
|
|
|
let data = vec![];
|
2014-06-18 17:56:21 +02:00
|
|
|
test(&data);
|
|
|
|
}
|