rustc/tests/ui/consts/cycle-static-promoted.rs
2024-06-21 09:39:33 +02:00

13 lines
221 B
Rust

//@ check-pass
struct Value {
values: &'static [&'static Value],
}
// This `static` recursively points to itself through a promoted (the slice).
static VALUE: Value = Value {
values: &[&VALUE],
};
fn main() {}