summaryrefslogtreecommitdiffstats
path: root/tests/debuginfo/issue-14411.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/debuginfo/issue-14411.rs')
-rw-r--r--tests/debuginfo/issue-14411.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/debuginfo/issue-14411.rs b/tests/debuginfo/issue-14411.rs
new file mode 100644
index 000000000..19609f428
--- /dev/null
+++ b/tests/debuginfo/issue-14411.rs
@@ -0,0 +1,15 @@
+// min-lldb-version: 310
+
+// 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);
+}