mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-30 10:23:09 +00:00
7 lines
128 B
Rust
7 lines
128 B
Rust
// check-pass
|
|
|
|
const PARSE_BOOL: Option<&'static str> = None;
|
|
static FOO: (Option<&str>, u32) = (PARSE_BOOL, 42);
|
|
|
|
fn main() {}
|