rust/tests/ui/consts/cycle-static-promoted.rs

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() {}