2021-10-19 00:00:00 +00:00
|
|
|
// Regression test for issue #89938.
|
2023-12-06 22:01:21 +00:00
|
|
|
//@ check-pass
|
2021-10-19 00:00:00 +00:00
|
|
|
//@ compile-flags: --crate-type=lib
|
2023-07-27 15:51:02 +00:00
|
|
|
|
2021-10-19 00:00:00 +00:00
|
|
|
#![feature(const_precise_live_drops)]
|
|
|
|
|
|
|
|
|
|
pub const fn f() {
|
|
|
|
|
let _: Option<String> = None;
|
|
|
|
|
let _: &'static Option<String> = &None;
|
|
|
|
|
}
|