mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 02:31:20 +00:00
13 lines
221 B
Rust
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() {}
|