mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-05 11:01:48 +00:00
10 lines
134 B
Rust
10 lines
134 B
Rust
// check-pass
|
|
|
|
struct S(pub &'static u32, pub u32);
|
|
|
|
const fn g(ss: &S) -> &u32 { &ss.1 }
|
|
|
|
static T: S = S(g(&T), 0);
|
|
|
|
fn main () { }
|