]> git.lizzy.rs Git - rust.git/blob - tests/debuginfo/issue-14411.rs
Rollup merge of #107807 - GuillaumeGomez:fix-small-debug-typo, r=notriddle
[rust.git] / tests / debuginfo / issue-14411.rs
1 // min-lldb-version: 310
2
3 // compile-flags:-g
4
5 // No debugger interaction required: just make sure it compiles without
6 // crashing.
7
8 fn test(a: &Vec<u8>) {
9   print!("{}", a.len());
10 }
11
12 pub fn main() {
13   let data = vec![];
14   test(&data);
15 }