mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
7 lines
129 B
Rust
7 lines
129 B
Rust
//@ check-pass
|
|
|
|
const PARSE_BOOL: Option<&'static str> = None;
|
|
static FOO: (Option<&str>, u32) = (PARSE_BOOL, 42);
|
|
|
|
fn main() {}
|