2023-10-16 12:36:39 -05:00
|
|
|
// skip-filecheck
|
2017-05-15 20:09:01 -05:00
|
|
|
// Check that when we compile the static `XXX` into MIR, we do not
|
|
|
|
// generate `StorageStart` or `StorageEnd` statements.
|
|
|
|
|
2022-09-04 22:00:31 -05:00
|
|
|
// EMIT_MIR storage_live_dead_in_statics.XXX.built.after.mir
|
2024-06-02 19:18:33 -05:00
|
|
|
#[rustfmt::skip]
|
2017-05-15 20:09:01 -05:00
|
|
|
static XXX: &'static Foo = &Foo {
|
|
|
|
tup: "hi",
|
|
|
|
data: &[
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
|
|
|
(0, 1), (0, 2), (0, 3),
|
2024-06-02 19:18:33 -05:00
|
|
|
],
|
2017-05-15 20:09:01 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
struct Foo {
|
|
|
|
tup: &'static str,
|
2024-06-02 19:18:33 -05:00
|
|
|
data: &'static [(u32, u32)],
|
2017-05-15 20:09:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
println!("{:?}", XXX);
|
|
|
|
}
|