mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 12:54:57 +00:00
8 lines
103 B
Rust
8 lines
103 B
Rust
//@ compile-flags: -Zalways-encode-mir
|
|
|
|
static S: usize = 42;
|
|
|
|
pub fn f() -> &'static usize {
|
|
&S
|
|
}
|