mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 10:25:09 +01:00
14 lines
213 B
Rust
14 lines
213 B
Rust
//@ 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() {
|
|
let data = vec![];
|
|
test(&data);
|
|
}
|