summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/precise-drop-with-promoted.rs
blob: 7cbe3c4e41562ef36f602a534801afe2fc062ad9 (plain)
1
2
3
4
5
6
7
8
9
10
// 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;
}