summaryrefslogtreecommitdiffstats
path: root/tests/debuginfo/issue-13213.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/debuginfo/issue-13213.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/debuginfo/issue-13213.rs')
-rw-r--r--tests/debuginfo/issue-13213.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/debuginfo/issue-13213.rs b/tests/debuginfo/issue-13213.rs
new file mode 100644
index 000000000..393478460
--- /dev/null
+++ b/tests/debuginfo/issue-13213.rs
@@ -0,0 +1,16 @@
+// min-lldb-version: 310
+// ignore-cdb: Fails with exit code 0xc0000135 ("the application failed to initialize properly")
+
+// aux-build:issue-13213-aux.rs
+
+extern crate issue_13213_aux;
+
+// compile-flags:-g
+
+// This tests make sure that we get no linker error when using a completely inlined static. Some
+// statics that are marked with AvailableExternallyLinkage in the importing crate, may actually not
+// be available because they have been optimized out from the exporting crate.
+fn main() {
+ let b: issue_13213_aux::S = issue_13213_aux::A;
+ println!("Nothing to do here...");
+}