about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan Levick <me@ryanlevick.com>2022-06-21 17:10:46 +0200
committerRyan Levick <me@ryanlevick.com>2022-08-04 10:39:35 +0200
commitf7bfd74f63730297eb7066a7c69a2bd775a7aa6a (patch)
treeb8cd5cdf1d7ffb927c3e966edd8283df46873de6
parent4fd0a7e30a4f0fbc63d57f09eadf58517ef4ac69 (diff)
downloadrust-f7bfd74f63730297eb7066a7c69a2bd775a7aa6a.tar.gz
rust-f7bfd74f63730297eb7066a7c69a2bd775a7aa6a.zip
Add comment about issue caused with multiple statics
-rw-r--r--src/test/debuginfo/no_mangle-info.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/debuginfo/no_mangle-info.rs b/src/test/debuginfo/no_mangle-info.rs
index fc40f130fcb..0b058b0827e 100644
--- a/src/test/debuginfo/no_mangle-info.rs
+++ b/src/test/debuginfo/no_mangle-info.rs
@@ -27,6 +27,8 @@
 #[no_mangle]
 pub static TEST: u64 = 0xdeadbeef;
 
+// FIXME: uncommenting this namespace breaks the test, and we're not sure why
+// pub static OTHER_TEST: u64 = 43;
 pub mod namespace {
     pub static OTHER_TEST: u64 = 42;
 }