mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-04 22:17:38 +00:00
15 lines
207 B
Rust
15 lines
207 B
Rust
![]() |
// regression test for #67609.
|
||
|
|
||
|
//@ check-pass
|
||
|
|
||
|
static NONE: Option<String> = None;
|
||
|
|
||
|
static NONE_REF_REF: &&Option<String> = {
|
||
|
let x = &&NONE;
|
||
|
x
|
||
|
};
|
||
|
|
||
|
fn main() {
|
||
|
println!("{:?}", NONE_REF_REF);
|
||
|
}
|