Add comment about issue caused with multiple statics

This commit is contained in:
Ryan Levick 2022-06-21 17:10:46 +02:00
parent 4fd0a7e30a
commit f7bfd74f63

View File

@ -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;
}