mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
225 B
Rust
11 lines
225 B
Rust
// Regression test for issue #89938.
|
|
// check-pass
|
|
// compile-flags: --crate-type=lib
|
|
|
|
#![feature(const_precise_live_drops)]
|
|
|
|
pub const fn f() {
|
|
let _: Option<String> = None;
|
|
let _: &'static Option<String> = &None;
|
|
}
|